From: Christian Heller 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/?p=plomrogue2;a=commitdiff_plain;h=03af3ff9e0fe02757b9e20054187c0fbf23566c7 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); },