home · contact · privacy
Fix same keybinding bug in curses client.
[plomrogue2-experiments] / new2 / rogue_chat_curses.py
index 10444740821d74ab0ca68d49e8a75aaad019d014..7030c296353332d30cc4cb4e032a6d38d9026687 100755 (executable)
@@ -480,6 +480,7 @@ class TUI:
                 draw_map()
 
         curses.curs_set(False)  # hide cursor
+        curses.use_default_colors();
         stdscr.timeout(10)
         reset_screen_size()
         self.explorer = YX(0, 0)
@@ -516,9 +517,9 @@ class TUI:
                 self.input_ = ""
             elif self.mode == self.mode_chat and key == '\n':
                 if self.input_[0] == '/':
-                    if self.input_ in {'/P', '/play'}:
+                    if self.input_ in {'/' + self.keys['switch_to_play'], '/play'}:
                         self.switch_mode('play')
-                    elif self.input_ in {'/?', '/study'}:
+                    elif self.input_ in {'/' + self.keys['switch_to_study'], '/study'}:
                         self.switch_mode('study')
                     elif self.input_ == '/help':
                         self.help()