Skip to content

Commit

Permalink
fix test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
alwaysintreble committed Jul 30, 2024
1 parent 9381c25 commit 94f1602
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/AutoWorld.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ def modify_early_locations(self, early_locations: Dict[int, List["Location"]]) -
sweep_state = self.multiworld.state.copy()
# collect any events from our already reachable locations
for location in early_locations[self.player]:
if location.is_event:
if location.is_event and location.advancement:
sweep_state.collect(location.item, location=location)
early_locations[self.player] += self.multiworld.get_reachable_locations(sweep_state, self.player)

Expand Down

0 comments on commit 94f1602

Please sign in to comment.