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:
79c5610
)
Fix bottle fullness indicator in web client.
author
Christian Heller
<c.heller@plomlompom.de>
Sat, 19 Dec 2020 04:10:04 +0000
(
05:10
+0100)
committer
Christian Heller
<c.heller@plomlompom.de>
Sat, 19 Dec 2020 04:10:04 +0000
(
05:10
+0100)
rogue_chat.html
patch
|
blob
|
history
diff --git
a/rogue_chat.html
b/rogue_chat.html
index 4e5da8b732f24bda544dec99d64f530d63f514e9..1847c0904ec9f7452efc718fa9265521e0bd7686 100644
(file)
--- a/
rogue_chat.html
+++ b/
rogue_chat.html
@@
-1540,6
+1540,13
@@
let explorer = {
if (t.installed) {
info += "/installed";
}
+ if (t.type_ == 'Bottle') {
+ if (t.thing_char == '_') {
+ info += '/empty';
+ } else if (t.thing_char == '~') {
+ info += '/full';
+ }
+ }
if (detailed) {
const protection = t.protection;
if (protection != '.') {