X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=rogue_chat.html;h=554c5945232f7aac6d57d786b02b206c7f8052cf;hb=673b5f17a66b9ff19d6d59a523b5c21e4ad3da73;hp=ce0b6a2c9d69785c9f33b315a7660dc2f514a77f;hpb=b72c8aea9efa8005534e6cef7e8f8fae5cf0918e;p=plomrogue2 diff --git a/rogue_chat.html b/rogue_chat.html index ce0b6a2..554c594 100644 --- a/rogue_chat.html +++ b/rogue_chat.html @@ -430,7 +430,7 @@ let server = { } else if (tokens[0] === 'THING_CHAR') { let t = game.get_thing(tokens[1], false); if (t) { - t.player_char = tokens[2]; + t.thing_char = tokens[2]; }; } else if (tokens[0] === 'TASKS') { game.tasks = tokens[1].split(','); @@ -897,8 +897,8 @@ let tui = { let t = game.things[thing_id]; let symbol = game.thing_types[t.type_]; let meta_char = ' '; - if (t.player_char) { - meta_char = t.player_char; + if (t.thing_char) { + meta_char = t.thing_char; } if (used_positions.includes(t.position.toString())) { meta_char = '+'; @@ -1231,8 +1231,8 @@ let explorer = { protection = 'none'; } info += "THING: " + t.type_ + " / " + symbol; - if (t.player_char) { - info += t.player_char; + if (t.thing_char) { + info += t.thing_char; }; if (t.name_) { info += " (" + t.name_ + ")";