X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=rogue_chat.html;h=f7a97ec11325cebb6faf66a769209fceea5aae0e;hb=5f77cabba400be428d6d402d9642836e449bd332;hp=27ae875da3b449e37f64ddecb5d241e667526980;hpb=5e1dd193ed529ff9d3ca3746736d74d3ca55d864;p=plomrogue2 diff --git a/rogue_chat.html b/rogue_chat.html index 27ae875..f7a97ec 100644 --- a/rogue_chat.html +++ b/rogue_chat.html @@ -238,7 +238,7 @@ let key_descriptions = { 'drop_thing': 'drop thing', 'door': 'open/close', 'consume': 'consume', - 'install': 'install', + 'install': '(un-)install', 'toggle_map_mode': 'toggle map view', 'toggle_tile_draw': 'toggle protection character drawing', 'hex_move_upleft': 'up-left', @@ -1066,7 +1066,7 @@ let tui = { let term_x = Math.max(0, -this.offset[1]); let map_y = Math.max(0, this.offset[0]); let map_x = Math.max(0, this.offset[1]); - for (; term_y < terminal.rows && map_y < game.map_size[0]; term_y++, map_y++) { + for (; term_y < terminal.rows && map_y < this.map_lines.length; term_y++, map_y++) { let to_draw = this.map_lines[map_y].slice(map_x, this.window_width + this.offset[1]); terminal.write(term_y, term_x, to_draw); }