home · contact · privacy
In clients, don't open item selection menu when no item in reach.
[plomrogue2] / rogue_chat.html
index 42b0362a4504aaed05882693cdbd05ead1c51171..1b501b5189354e70fcb5658c61db8a62e4acb862 100644 (file)
@@ -853,7 +853,10 @@ let tui = {
             }
         };
         if (this.selectables.length == 0) {
-            this.log_msg('none')
+            this.log_msg('none');
+            terminal.blink_screen();
+            this.switch_mode('play');
+            return;
         } else {
             for (let [i, t] of this.selectables.entries()) {
                 this.log_msg(i + ': ' + explorer.get_thing_info(t[1]));