From: Christian Heller <c.heller@plomlompom.de>
Date: Sat, 19 Dec 2020 02:47:47 +0000 (+0100)
Subject: In web client, switch mode and stats line.
X-Git-Url: https://plomlompom.com/repos/%7B%7Bdb.prefix%7D%7D/%7B%7B%20web_path%20%7D%7D/%7B%7Bprefix%7D%7D/static/%7Broute%7D?a=commitdiff_plain;h=03af3ff9e0fe02757b9e20054187c0fbf23566c7;p=plomrogue2

In web client, switch mode and stats line.
---

diff --git a/rogue_chat.html b/rogue_chat.html
index 304346d..d644d62 100644
--- a/rogue_chat.html
+++ b/rogue_chat.html
@@ -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);
   },