From afe1cdf283e7a9cf312f60fd2080b63409ccda26 Mon Sep 17 00:00:00 2001 From: compiling <8335770+compiling@users.noreply.github.com> Date: Thu, 13 Feb 2020 20:48:25 +1100 Subject: [PATCH] Always show dungeon chest counter with cross-dungeons. --- Rom.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Rom.py b/Rom.py index 2968d9d7..5228be7c 100644 --- a/Rom.py +++ b/Rom.py @@ -1157,6 +1157,8 @@ def patch_rom(world, rom, player, team, enemized): # compasses showing dungeon count if world.clock_mode != 'off': rom.write_byte(0x18003C, 0x00) # Currently must be off if timer is on, because they use same HUD location + elif world.doorShuffle[player] == 'crossed': + rom.write_byte(0x18003C, 0x02) # show always elif world.compassshuffle[player] or world.doorShuffle[player] != 'vanilla': rom.write_byte(0x18003C, 0x01) # show on pickup else: