From ff7d164a64794ec20e330bd4da269543a1bbe833 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Tue, 5 Apr 2022 11:31:19 -0500 Subject: [PATCH] Allow AT and GT icons to show on map checks in Mixed OW --- Rom.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Rom.py b/Rom.py index 5969e7c2..a557263f 100644 --- a/Rom.py +++ b/Rom.py @@ -1529,8 +1529,9 @@ def patch_rom(world, rom, player, team, enemized, is_mystery=False): compass_mode |= 0x40 # compasses are wild if not (world.shuffle[player] != 'vanilla' and world.overworld_map[player] != 'default'): # disable HC/AT/GT icons - rom.write_bytes(0x53E8C, int16_as_bytes(0xFF00)) # GT - rom.write_bytes(0x53E8E, int16_as_bytes(0xFF00)) # AT + # rom.write_bytes(0x53E8A, int16_as_bytes(0xFF00)) # GT + # rom.write_bytes(0x53E8C, int16_as_bytes(0xFF00)) # AT + rom.write_bytes(0x53E8E, int16_as_bytes(0xFF00)) # HC for dungeon, portal_list in dungeon_portals.items(): ow_map_index = dungeon_table[dungeon].map_index if world.shuffle[player] != 'vanilla' and world.overworld_map[player] != 'default':