home · contact · privacy
Minor action renaming.
authorChristian Heller <c.heller@plomlompom.de>
Wed, 25 Nov 2020 00:40:37 +0000 (01:40 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Wed, 25 Nov 2020 00:40:37 +0000 (01:40 +0100)
rogue_chat.html
rogue_chat_curses.py

index ce6cf4cae6bcb835be05e2895c72d826a65f96ed..9f24d82c7dc10d8d3c313154a1985d56cff50528 100644 (file)
@@ -938,10 +938,10 @@ let tui = {
               content += "[" + movement_keys_desc + "] – move player\n";
           }
           if (game.tasks.includes('PICK_UP')) {
-              content += "[" + this.keys.take_thing + "] – take thing under player\n";
+              content += "[" + this.keys.take_thing + "] – pick up thing\n";
           }
           if (game.tasks.includes('DROP')) {
-              content += "[" + this.keys.drop_thing + "] – drop carried thing\n";
+              content += "[" + this.keys.drop_thing + "] – drop picked up thing\n";
           }
           content += "[" + tui.keys.teleport + "] – teleport to other space\n";
           content += '\n';
index cdc2c01de4d0deb314313224b9d0e36826061546..653908f26d21f07021d9b026b3c918c72a6438e5 100755 (executable)
@@ -724,9 +724,9 @@ class TUI:
                 if 'MOVE' in self.game.tasks:
                     content += "[%s] – move player\n" % ','.join(self.movement_keys)
                 if 'PICK_UP' in self.game.tasks:
-                    content += "[%s] – take thing under player\n" % self.keys['take_thing']
+                    content += "[%s] – pick up thing\n" % self.keys['take_thing']
                 if 'DROP' in self.game.tasks:
-                    content += "[%s] – drop carried thing\n" % self.keys['drop_thing']
+                    content += "[%s] – drop picked up thing\n" % self.keys['drop_thing']
                 content += '[%s] – teleport to other space\n' % self.keys['teleport']
                 content += '\n'
             elif self.mode.name == 'study':