From 83fe0b7315b5e7f82778456efb76060c575d8c0f Mon Sep 17 00:00:00 2001 From: Spineraks Date: Fri, 29 Nov 2024 00:11:36 +0100 Subject: [PATCH] [LADX] Fix minimal accessibility --- worlds/ladx/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/worlds/ladx/__init__.py b/worlds/ladx/__init__.py index 2846b40e67d9..8c3f7697c1ec 100644 --- a/worlds/ladx/__init__.py +++ b/worlds/ladx/__init__.py @@ -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)