Always show dungeon chest counter with cross-dungeons.
This commit is contained in:
2
Rom.py
2
Rom.py
@@ -1157,6 +1157,8 @@ def patch_rom(world, rom, player, team, enemized):
|
|||||||
# compasses showing dungeon count
|
# compasses showing dungeon count
|
||||||
if world.clock_mode != 'off':
|
if world.clock_mode != 'off':
|
||||||
rom.write_byte(0x18003C, 0x00) # Currently must be off if timer is on, because they use same HUD location
|
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':
|
elif world.compassshuffle[player] or world.doorShuffle[player] != 'vanilla':
|
||||||
rom.write_byte(0x18003C, 0x01) # show on pickup
|
rom.write_byte(0x18003C, 0x01) # show on pickup
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user