From 9c3bdec26936e8ea56c4c332acd1ca8f16a73327 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 2 May 2024 02:52:16 -0500 Subject: Lingo: Expand sphere 1 under restrictive conditions (#3190) --- locations.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'locations.py') diff --git a/locations.py b/locations.py index a6e53e7..5ffedee 100644 --- a/locations.py +++ b/locations.py @@ -10,6 +10,7 @@ class LocationClassification(Flag): normal = auto() reduced = auto() insanity = auto() + small_sphere_one = auto() class LocationData(NamedTuple): @@ -47,6 +48,9 @@ def load_location_data(): if not panel.exclude_reduce: classification |= LocationClassification.reduced + if room_name == "Starting Room": + classification |= LocationClassification.small_sphere_one + ALL_LOCATION_TABLE[location_name] = \ LocationData(get_panel_location_id(room_name, panel_name), room_name, [RoomAndPanel(None, panel_name)], classification) -- cgit 1.4.1