X-Git-Url: https://plomlompom.com/repos/day?a=blobdiff_plain;f=rogue_chat_curses.py;h=c6954bfce2b8ba502e170968cc5ec953c7f0e75a;hb=118102d4306465cfc3215c142c8d13ecff033710;hp=3a5950c477372c2cf44510bde9c6e8e6a0d4370b;hpb=3ac4bfc7722ec4366698ae17f5e2006e6a9e8b30;p=plomrogue2 diff --git a/rogue_chat_curses.py b/rogue_chat_curses.py index 3a5950c..c6954bf 100755 --- a/rogue_chat_curses.py +++ b/rogue_chat_curses.py @@ -38,7 +38,7 @@ mode_helps = { }, 'take_thing': { 'short': 'take thing', - 'intro': '', + 'intro': 'Pick up a thing in reach by entering its index number. Enter nothing to abort.', 'long': 'You see a list of things which you could pick up. Enter the target thing\'s index, or, to leave, nothing.' }, 'admin_thing_protect': { @@ -623,7 +623,7 @@ class TUI: else: self.log_msg('@ enter username') elif self.mode.name == 'take_thing': - self.log_msg('selectable things:') + self.log_msg('Things in reach for pick-up:') player = self.game.get_thing(self.game.player_id) select_range = [player.position, player.position + YX(0,-1),