From 71880a263d3018157950eb2c361f201d415ce0ae Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Wed, 25 Nov 2020 01:40:37 +0100
Subject: [PATCH] Minor action renaming.

---
 rogue_chat.html      | 4 ++--
 rogue_chat_curses.py | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

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':
-- 
2.30.2