From: Christian Heller <c.heller@plomlompom.de>
Date: Wed, 25 Nov 2020 00:40:37 +0000 (+0100)
Subject: Minor action renaming.
X-Git-Url: https://plomlompom.com/repos/%22https:/validator.w3.org/static/blog?a=commitdiff_plain;h=71880a263d3018157950eb2c361f201d415ce0ae;p=plomrogue2
Minor action renaming.
---
diff --git a/rogue_chat.html b/rogue_chat.html
index ce6cf4c..9f24d82 100644
--- a/rogue_chat.html
+++ b/rogue_chat.html
@@ -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';
diff --git a/rogue_chat_curses.py b/rogue_chat_curses.py
index cdc2c01..653908f 100755
--- a/rogue_chat_curses.py
+++ b/rogue_chat_curses.py
@@ -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':