From a2894e6935a831d2d8fdfc1f05ca2edc2e1abc57 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Mon, 7 Dec 2020 03:30:40 +0100 Subject: [PATCH] Improve precision of install key name. --- rogue_chat.html | 2 +- rogue_chat_curses.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rogue_chat.html b/rogue_chat.html index 27ae875..d971c9b 100644 --- a/rogue_chat.html +++ b/rogue_chat.html @@ -238,7 +238,7 @@ let key_descriptions = { 'drop_thing': 'drop thing', 'door': 'open/close', 'consume': 'consume', - 'install': 'install', + 'install': '(un-)install', 'toggle_map_mode': 'toggle map view', 'toggle_tile_draw': 'toggle protection character drawing', 'hex_move_upleft': 'up-left', diff --git a/rogue_chat_curses.py b/rogue_chat_curses.py index bc3c40d..8adbee5 100755 --- a/rogue_chat_curses.py +++ b/rogue_chat_curses.py @@ -959,7 +959,7 @@ class TUI: 'drop_thing': 'drop thing', 'toggle_map_mode': 'toggle map view', 'toggle_tile_draw': 'toggle protection character drawing', - 'install': 'install', + 'install': '(un-)install', 'door': 'open/close', 'consume': 'consume', } -- 2.30.2