home · contact · privacy
Show portal char next to terrain char.
[plomrogue2] / rogue_chat_curses.py
index 653908f26d21f07021d9b026b3c918c72a6438e5..e95b0c84cc45e816bfe4b90c3bca17ccf07d94ec 100755 (executable)
@@ -674,7 +674,8 @@ class TUI:
                     map_lines_split[p.y][p.x] = 'A '
             elif self.map_mode == 'terrain':
                 for p in self.game.portals.keys():
-                    map_lines_split[p.y][p.x] = 'P '
+                    original = map_lines_split[p.y][p.x]
+                    map_lines_split[p.y][p.x] = original[0] + 'P'
                 used_positions = []
                 for t in self.game.things:
                     symbol = self.game.thing_types[t.type_]