home · contact · privacy
Minor key effect fixes in clients.
[plomrogue2] / rogue_chat_curses.py
index 946c8ae3315e86f5c645d002dc0a1ca6138923d6..33b2750788c4c9b241158c9943ff428d726c9a8e 100755 (executable)
@@ -495,8 +495,8 @@ class TUI:
                 map_y += 1
 
         def draw_help():
-            content = "%s mode help (hit any key to disappear)\n\n%s\n\n" % (self.mode.name,
-                                                            self.mode.help_intro)
+            content = "%s mode help\n\n%s\n\n" % (self.mode.name,
+                                                  self.mode.help_intro)
             if self.mode == self.mode_play:
                 content += "Available actions:\n"
                 if 'MOVE' in self.game.tasks: