home · contact · privacy
Mark portals as P on map.
[plomrogue2] / rogue_chat_curses.py
index c5e4f9dae3929446b9e8be79cd9d8b3476433cf5..0644a4ccc439ebda77eacce232162748a7aeabac 100755 (executable)
@@ -509,6 +509,8 @@ class TUI:
                 end = start + self.game.map_geometry.size.x
                 map_lines_split += [[c + ' ' for c in map_content[start:end]]]
             if self.map_mode == 'terrain':
+                for p in self.game.portals.keys():
+                    map_lines_split[p.y][p.x] = 'P '
                 used_positions = []
                 for t in self.game.things:
                     symbol = self.game.thing_types[t.type_]