X-Git-Url: https://plomlompom.com/repos/new_day?a=blobdiff_plain;f=rogue_chat_curses.py;h=70060275893245d4e63ba5e2838f53dbd1e53fd6;hb=d13e2f639316c1dba7a62d84f3c850bc937c2b1e;hp=bc3c40d8839bd953e8d4e7ba36db3291a8df79dc;hpb=5e1dd193ed529ff9d3ca3746736d74d3ca55d864;p=plomrogue2 diff --git a/rogue_chat_curses.py b/rogue_chat_curses.py index bc3c40d..7006027 100755 --- a/rogue_chat_curses.py +++ b/rogue_chat_curses.py @@ -896,7 +896,7 @@ class TUI: term_x = max(0, -self.offset.x) map_y = max(0, self.offset.y) map_x = max(0, self.offset.x) - while (term_y < self.size.y and map_y < self.game.map_geometry.size.y): + while term_y < self.size.y and map_y < len(self.map_lines): to_draw = self.map_lines[map_y][map_x:self.window_width + self.offset.x] safe_addstr(term_y, term_x, to_draw) term_y += 1 @@ -959,7 +959,7 @@ class TUI: 'drop_thing': 'drop thing', 'toggle_map_mode': 'toggle map view', 'toggle_tile_draw': 'toggle protection character drawing', - 'install': 'install', + 'install': '(un-)install', 'door': 'open/close', 'consume': 'consume', }