From: Christian Heller Date: Mon, 7 Dec 2020 02:30:40 +0000 (+0100) Subject: Improve precision of install key name. X-Git-Url: https://plomlompom.com/repos/?a=commitdiff_plain;h=a2894e6935a831d2d8fdfc1f05ca2edc2e1abc57;p=plomrogue2 Improve precision of install key name. --- 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', }