VT28 update: Keysanity has dungeon items in normal item pool

This commit is contained in:
Kevin Cathcart
2018-01-02 20:01:16 -05:00
parent 3adf4fadd1
commit e3ac7ee4a6
4 changed files with 20 additions and 2 deletions

View File

@@ -178,7 +178,7 @@ def create_playthrough(world):
raise RuntimeError('Cannot beat game. Something went terribly wrong here!')
# get locations containing progress items
prog_locations = [location for location in world.get_locations() if location.item is not None and (location.item.advancement or (location.item.key and world.keysanity))]
prog_locations = [location for location in world.get_filled_locations() if location.item.advancement]
collection_spheres = []
state = CollectionState(world)