X-Git-Url: https://plomlompom.com/repos/do_day?a=blobdiff_plain;f=rogue_chat.html;h=ce0b6a2c9d69785c9f33b315a7660dc2f514a77f;hb=b72c8aea9efa8005534e6cef7e8f8fae5cf0918e;hp=da13b13a392a3addfc48a04fcf056edf95006abb;hpb=6f5e2612e8d2b2515612e3dee6dc5ab115f0c1a3;p=plomrogue2 diff --git a/rogue_chat.html b/rogue_chat.html index da13b13..ce0b6a2 100644 --- a/rogue_chat.html +++ b/rogue_chat.html @@ -1228,16 +1228,16 @@ let explorer = { let symbol = game.thing_types[t.type_]; let protection = t.protection; if (protection == '.') { - protection = 'unprotected'; + protection = 'none'; } - info += "THING: " + t.type_ + " / protection: " + protection + " / " + symbol; + info += "THING: " + t.type_ + " / " + symbol; if (t.player_char) { info += t.player_char; }; if (t.name_) { info += " (" + t.name_ + ")"; } - info += "\n"; + info += " / protection: " + protection + "\n"; } } if (this.position in game.portals) {