home · contact · privacy
Add song deletion to MusicPlayer.
[plomrogue2] / rogue_chat_curses.py
index bc3c40d8839bd953e8d4e7ba36db3291a8df79dc..70060275893245d4e63ba5e2838f53dbd1e53fd6 100755 (executable)
@@ -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',
         }