home · contact · privacy
For short / commands, use keybindings.
authorChristian Heller <c.heller@plomlompom.de>
Sun, 8 Nov 2020 00:01:49 +0000 (01:01 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Sun, 8 Nov 2020 00:01:49 +0000 (01:01 +0100)
new2/rogue_chat_curses.py
new2/rogue_chat_nocanvas_monochrome.html

index 689ecc1b1686f023799ae7f94b739e8f33359c6b..ad9dba169620299ecfd78e598664ce520f556894 100755 (executable)
@@ -281,8 +281,8 @@ class TUI:
         self.log_msg("  /nick NAME - re-name yourself to NAME");
         self.log_msg("  /msg USER TEXT - send TEXT to USER");
         self.log_msg("  /help - show this help");
-        self.log_msg("  /P or /play - switch to play mode");
-        self.log_msg("  /? or /study - switch to study mode");
+        self.log_msg("  /%s or /play - switch to play mode" % self.keys['switch_to_play']);
+        self.log_msg("  /%s or /study - switch to study mode" % self.keys['switch_to_study']);
         self.log_msg("commands common to study and play mode:");
         self.log_msg("  %s - move" % ','.join(self.movement_keys));
         self.log_msg("  %s - switch to chat mode" % self.keys['switch_to_chat']);
index 664409d990800a38a9a980bd71bdb6f376161d9d..6c00684767d7f55ff449eb5aa02c58234373d57e 100644 (file)
@@ -396,8 +396,8 @@ let tui = {
     this.log_msg("  /nick NAME - re-name yourself to NAME");
     this.log_msg("  /msg USER TEXT - send TEXT to USER");
     this.log_msg("  /help - show this help");
-    this.log_msg("  /P or /play - switch to play mode");
-    this.log_msg("  /? or /study - switch to study mode");
+    this.log_msg("  /" + this.keys.switch_to_play + " or /play - switch to play mode");
+    this.log_msg("  /" + this.keys.switch_to_study + " or /study - switch to study mode");
     this.log_msg("commands common to study and play mode:");
     this.log_msg("  " + movement_keys_desc + " - move");
     this.log_msg("  " + this.keys.switch_to_chat + " - switch to chat mode");