home · contact · privacy
In web client, switch mode and stats line.
[plomrogue2] / rogue_chat.html
index 304346d5abac55cb796dd04f28ccaaebc61a5381..d644d626c960b75df384baa2caaa04106498ccce 100644 (file)
@@ -1237,10 +1237,10 @@ let tui = {
       if (this.mode.has_input_prompt) {
           help = 'enter /help for help';
       }
-      terminal.write(0, this.window_width, 'MODE: ' + this.mode.short_desc + ' – ' + help);
+      terminal.write(1, this.window_width, 'MODE: ' + this.mode.short_desc + ' – ' + help);
   },
   draw_stats_line: function(n) {
-      terminal.write(1, this.window_width,
+      terminal.write(0, this.window_width,
                      'ENERGY: ' + game.energy +
                      ' BLADDER: ' + game.bladder_pressure);
   },