home
·
contact
·
privacy
projects
/
plomrogue2
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ee83c5b
)
In web client, switch mode and stats line.
author
Christian Heller
<c.heller@plomlompom.de>
Sat, 19 Dec 2020 02:47:47 +0000
(
03:47
+0100)
committer
Christian Heller
<c.heller@plomlompom.de>
Sat, 19 Dec 2020 02:47:47 +0000
(
03:47
+0100)
rogue_chat.html
patch
|
blob
|
history
diff --git
a/rogue_chat.html
b/rogue_chat.html
index 304346d5abac55cb796dd04f28ccaaebc61a5381..d644d626c960b75df384baa2caaa04106498ccce 100644
(file)
--- 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);
},