X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/copy_structured?a=blobdiff_plain;f=rogue_chat_nocanvas_monochrome.html;h=b8d7b986d11c1350bf203f5a8f380bc4b1298816;hb=d4419f2d3b883a20111d8258fb4f625094e9c587;hp=88b66723d9ee6f5f54aa2a06dada0214f22a80f4;hpb=687f032b63ef13e98a8e71ef59c6ef0cd032149f;p=plomrogue2 diff --git a/rogue_chat_nocanvas_monochrome.html b/rogue_chat_nocanvas_monochrome.html index 88b6672..b8d7b98 100644 --- a/rogue_chat_nocanvas_monochrome.html +++ b/rogue_chat_nocanvas_monochrome.html @@ -825,6 +825,11 @@ let explorer = { terrain_desc = game.terrains[terrain_char]; }; info += 'TERRAIN: "' + terrain_char + '" / ' + terrain_desc + "\n"; + let protection = game.map_control[position_i]; + if (protection == '.') { + protection = 'unprotected'; + }; + info += 'PROTECTION: ' + protection + '\n'; for (let t_id in game.things) { let t = game.things[t_id]; if (t.position[0] == this.position[0] && t.position[1] == this.position[1]) {