X-Git-Url: https://plomlompom.com/repos/%22https:/validator.w3.org/static/git-favicon.png?a=blobdiff_plain;f=rogue_chat.html;h=f7a97ec11325cebb6faf66a769209fceea5aae0e;hb=5f77cabba400be428d6d402d9642836e449bd332;hp=d971c9bd47d1f17683c531d22d5a19ac2c1a9a30;hpb=f68b1eccb0f22fc29e9fb612f65ce9c8b52023c3;p=plomrogue2 diff --git a/rogue_chat.html b/rogue_chat.html index d971c9b..f7a97ec 100644 --- a/rogue_chat.html +++ b/rogue_chat.html @@ -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); }