Fixing some incorrect AT/GT swap things

This commit is contained in:
codemann8
2022-03-28 03:05:58 -05:00
parent 908ae254bb
commit 1eae786c43
2 changed files with 2 additions and 2 deletions

View File

@@ -202,7 +202,7 @@ def district_item_pool_config(world):
scale_factors = defaultdict(int)
scale_total = 0
for p in range(1, world.players + 1):
ent = 'Agahnims Tower' if world.is_tile_swapped(0x1b, player) and world.is_tile_swapped(0x1b, player) else 'Ganons Tower'
ent = 'Agahnims Tower' if world.is_atgt_swapped(player) else 'Ganons Tower'
dungeon = world.get_entrance(ent, p).connected_region.dungeon
if dungeon:
scale = world.crystals_needed_for_gt[p]