From a7a7879df4e61bdb5c061ce72b3c7d60451cef9a Mon Sep 17 00:00:00 2001 From: XxDERProjectxX <114278502+XxDERProjectxX@users.noreply.github.com> Date: Sun, 29 Mar 2026 16:34:21 -0500 Subject: [PATCH] Satisfactory: bug fix in __init__.py (#5930) Solved indentation error to return to intended functionality --- worlds/satisfactory/__init__.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/worlds/satisfactory/__init__.py b/worlds/satisfactory/__init__.py index fc5c6f2edf..d105bd268c 100644 --- a/worlds/satisfactory/__init__.py +++ b/worlds/satisfactory/__init__.py @@ -244,14 +244,14 @@ class SatisfactoryWorld(World): or self.options.awesome_logic_placement.value == Placement.starting_inventory: locations_visible_from_start.update(range(1338700, 1338709)) # ids of shop locations 1 to 10 - location_names_with_useful_items: Iterable[str] = [ - location.name - for location in self.get_locations() - if location.address in locations_visible_from_start and location.item \ - and location.item.flags & (ItemClassification.progression | ItemClassification.useful) > 0 - ] + location_names_with_useful_items: Iterable[str] = [ + location.name + for location in self.get_locations() + if location.address in locations_visible_from_start and location.item \ + and location.item.flags & (ItemClassification.progression | ItemClassification.useful) > 0 + ] - self.options.start_location_hints.value.update(location_names_with_useful_items) + self.options.start_location_hints.value.update(location_names_with_useful_items) def push_precollected_by_name(self, item_name: str) -> None: item = self.create_item(item_name)