From 26c1e9b8c3f6a147763f514994593b3963ec210e Mon Sep 17 00:00:00 2001 From: NewSoupVi <57900059+NewSoupVi@users.noreply.github.com> Date: Fri, 22 Nov 2024 16:23:40 +0100 Subject: [PATCH] Remove the overindentation --- Fill.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Fill.py b/Fill.py index 6f5ddb9c77..887fed15ec 100644 --- a/Fill.py +++ b/Fill.py @@ -184,10 +184,10 @@ def fill_restrictive(multiworld: MultiWorld, base_state: CollectionState, locati if single_player_placement else None) for placement in placements: if ( - multiworld.worlds[placement.item.player].options.accessibility != "minimal" - # accessibility_corrections can clean up the case where the location's player is minimal - and multiworld.worlds[placement.player].options.accessibility != "minimal" - and not placement.can_reach(state) + multiworld.worlds[placement.item.player].options.accessibility != "minimal" + # accessibility_corrections can clean up the case where the location's player is minimal + and multiworld.worlds[placement.player].options.accessibility != "minimal" + and not placement.can_reach(state) ): placement.item.location = None unplaced_items.append(placement.item)