Skip to content

Commit

Permalink
SM: fix missed SMWorld.spheres in ArchipelagoMW#2400 (ArchipelagoMW#2419
Browse files Browse the repository at this point in the history
)
  • Loading branch information
black-sliver authored Nov 2, 2023
1 parent ec70cfc commit 880326c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/sm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ def get_player_ItemLocation(progression_only: bool):
escapeTrigger = None
if self.variaRando.randoExec.randoSettings.restrictions["EscapeTrigger"]:
#used to simulate received items
first_local_collected_loc = next(itemLoc for itemLoc in SMWorld.spheres if itemLoc.player == self.player)
first_local_collected_loc = next(itemLoc for itemLoc in spheres if itemLoc.player == self.player)

playerItemsItemLocs = get_player_ItemLocation(False)
playerProgItemsItemLocs = get_player_ItemLocation(True)
Expand Down

0 comments on commit 880326c

Please sign in to comment.