home · contact · privacy
In web client, switch mode and stats line.
authorChristian Heller <c.heller@plomlompom.de>
Sat, 19 Dec 2020 02:47:47 +0000 (03:47 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Sat, 19 Dec 2020 02:47:47 +0000 (03:47 +0100)
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);
   },