X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/balance2?a=blobdiff_plain;f=rogue_chat.html;h=d865516eaad3d93054f99e7611cda281f1a85964;hb=49741de058b5320f181c69894da6dbdac2a6fa8d;hp=2a41e0ad1285cb033c0194b392d3fce2c51152d5;hpb=b96c09a32fe69f9549c0569498cdc42c08dbfcde;p=plomrogue2 diff --git a/rogue_chat.html b/rogue_chat.html index 2a41e0a..d865516 100644 --- a/rogue_chat.html +++ b/rogue_chat.html @@ -814,7 +814,8 @@ let tui = { } else if (this.map_mode == 'terrain') { for (const p in game.portals) { let coordinate = p.split(',') - map_lines_split[coordinate[0]][coordinate[1]] = 'P '; + let original = map_lines_split[coordinate[0]][coordinate[1]]; + map_lines_split[coordinate[0]][coordinate[1]] = original[0] + 'P'; } let used_positions = []; for (const thing_id in game.things) {