Always show dungeon chest counter with cross-dungeons.

This commit is contained in:
compiling
2020-02-13 20:48:25 +11:00
parent 2309eccad5
commit afe1cdf283

2
Rom.py
View File

@@ -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: