From 03af3ff9e0fe02757b9e20054187c0fbf23566c7 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Sat, 19 Dec 2020 03:47:47 +0100 Subject: [PATCH] In web client, switch mode and stats line. --- rogue_chat.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); }, -- 2.30.2