Some random Mixed OWR fixes

This commit is contained in:
codemann8
2024-05-11 14:39:05 -05:00
parent 1f66aa87fe
commit 8b295a74ad
3 changed files with 4 additions and 4 deletions

View File

@@ -1142,7 +1142,7 @@ def simple_shuffle_dungeons(world, player):
# shuffle multi-entrance dungeons
multi_dungeons = ['Desert Palace', 'Turtle Rock']
if world.mode[player] == 'standard' or (world.mode[player] == 'inverted' and not world.shuffle_ganon):
if world.mode[player] == 'standard' or (world.is_atgt_swapped(player) and not world.shuffle_ganon):
hc_target = 'Hyrule Castle'
random.shuffle(multi_dungeons)
else: