Skip to content

Commit

Permalink
[LADX] Fix minimal accessibility
Browse files Browse the repository at this point in the history
  • Loading branch information
spinerak authored Nov 28, 2024
1 parent 78bc7b8 commit 83fe0b7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion worlds/ladx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,10 @@ def priority(item):
# Remove dungeon items we are about to put in from the state so that we don't double count
for item in all_dungeon_items_to_fill:
all_state.remove(item)


# Remove "An Alarm Clock" from "Windfish" to avoid fill_restrictive thinking the game has been beaten
all_state.remove(self.get_location("Windfish").item)

# Finally, fill!
fill_restrictive(self.multiworld, all_state, all_dungeon_locs_to_fill, all_dungeon_items_to_fill, lock=True, single_player_placement=True, allow_partial=False)

Expand Down

0 comments on commit 83fe0b7

Please sign in to comment.