diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-05-02 02:52:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-02 09:52:16 +0200 |
commit | 9c3bdec26936e8ea56c4c332acd1ca8f16a73327 (patch) | |
tree | 9a3f318712c559c19d0bf237ae5c50b16d38aa9f /locations.py | |
parent | 392fe65313a94ebfd7e0f70c8f7c3c7365bcff1c (diff) | |
download | lingo-apworld-9c3bdec26936e8ea56c4c332acd1ca8f16a73327.tar.gz lingo-apworld-9c3bdec26936e8ea56c4c332acd1ca8f16a73327.tar.bz2 lingo-apworld-9c3bdec26936e8ea56c4c332acd1ca8f16a73327.zip |
Lingo: Expand sphere 1 under restrictive conditions (#3190)
Diffstat (limited to 'locations.py')
-rw-r--r-- | locations.py | 4 |
1 files changed, 4 insertions, 0 deletions
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): | |||
10 | normal = auto() | 10 | normal = auto() |
11 | reduced = auto() | 11 | reduced = auto() |
12 | insanity = auto() | 12 | insanity = auto() |
13 | small_sphere_one = auto() | ||
13 | 14 | ||
14 | 15 | ||
15 | class LocationData(NamedTuple): | 16 | class LocationData(NamedTuple): |
@@ -47,6 +48,9 @@ def load_location_data(): | |||
47 | if not panel.exclude_reduce: | 48 | if not panel.exclude_reduce: |
48 | classification |= LocationClassification.reduced | 49 | classification |= LocationClassification.reduced |
49 | 50 | ||
51 | if room_name == "Starting Room": | ||
52 | classification |= LocationClassification.small_sphere_one | ||
53 | |||
50 | ALL_LOCATION_TABLE[location_name] = \ | 54 | ALL_LOCATION_TABLE[location_name] = \ |
51 | LocationData(get_panel_location_id(room_name, panel_name), room_name, | 55 | LocationData(get_panel_location_id(room_name, panel_name), room_name, |
52 | [RoomAndPanel(None, panel_name)], classification) | 56 | [RoomAndPanel(None, panel_name)], classification) |