From ef162aae54945be7521fd172b9d033d129a4bde3 Mon Sep 17 00:00:00 2001 From: LLCoolDave Date: Mon, 17 Jul 2017 23:16:15 +0200 Subject: [PATCH] Fill SP keys last by default (only trailed by whatever is behind gtower) to deal with Dam being behind pyramid fairy (ensure crystal 5 and 6 have keys placed before SP gets filled) --- Dungeons.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dungeons.py b/Dungeons.py index 23855fe5..21b4632e 100644 --- a/Dungeons.py +++ b/Dungeons.py @@ -28,7 +28,7 @@ def fill_dungeons(world): world.push_item(world.get_location(mandatory_sw_key_location), ItemFactory('Small Key (Skull Woods)'), False) world.get_location(mandatory_sw_key_location).event = True - dungeons = [TR, ES, EP, DP, ToH, AT, PoD, TT, SW, SP, IP, MM, GT] + dungeons = [TR, ES, EP, DP, ToH, AT, PoD, TT, SW, IP, MM, GT, SP] for dungeon in dungeons: if world.get_entrance('Ganons Tower').connected_region.name in dungeon[0]: dungeons.pop(dungeons.index(dungeon))