diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-07-22 18:45:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-23 00:45:49 +0200 |
commit | 5c54e52bfe88c5ee91828a3eea1d2cecfee8af45 (patch) | |
tree | 86a55b30598e78e94b05cb5620ef94881b4cb486 | |
parent | 173c17da5a795b14ea40f87d178a2f45cf603aa0 (diff) | |
download | lingo-apworld-5c54e52bfe88c5ee91828a3eea1d2cecfee8af45.tar.gz lingo-apworld-5c54e52bfe88c5ee91828a3eea1d2cecfee8af45.tar.bz2 lingo-apworld-5c54e52bfe88c5ee91828a3eea1d2cecfee8af45.zip |
Lingo: Fix Early Color Hallways painting in pilgrimages (#3645)
-rw-r--r-- | data/LL1.yaml | 1 | ||||
-rw-r--r-- | data/generated.dat | bin | 136017 -> 136017 bytes | |||
-rw-r--r-- | regions.py | 2 |
3 files changed, 1 insertions, 2 deletions
diff --git a/data/LL1.yaml b/data/LL1.yaml index 4d6771a..970063d 100644 --- a/data/LL1.yaml +++ b/data/LL1.yaml | |||
@@ -3265,7 +3265,6 @@ | |||
3265 | door: Traveled Entrance | 3265 | door: Traveled Entrance |
3266 | Color Hallways: | 3266 | Color Hallways: |
3267 | door: Color Hallways Entrance | 3267 | door: Color Hallways Entrance |
3268 | warp: True | ||
3269 | panels: | 3268 | panels: |
3270 | Achievement: | 3269 | Achievement: |
3271 | id: Countdown Panels/Panel_traveled_traveled | 3270 | id: Countdown Panels/Panel_traveled_traveled |
diff --git a/data/generated.dat b/data/generated.dat index 6c8c925..0653086 100644 --- a/data/generated.dat +++ b/data/generated.dat | |||
Binary files differ | |||
diff --git a/regions.py b/regions.py index 9834f04..9773f22 100644 --- a/regions.py +++ b/regions.py | |||
@@ -159,7 +159,7 @@ def create_regions(world: "LingoWorld") -> None: | |||
159 | RoomAndDoor("Pilgrim Antechamber", "Sun Painting"), EntranceType.PAINTING, False, world) | 159 | RoomAndDoor("Pilgrim Antechamber", "Sun Painting"), EntranceType.PAINTING, False, world) |
160 | 160 | ||
161 | if early_color_hallways: | 161 | if early_color_hallways: |
162 | connect_entrance(regions, regions["Starting Room"], regions["Outside The Undeterred"], "Early Color Hallways", | 162 | connect_entrance(regions, regions["Starting Room"], regions["Color Hallways"], "Early Color Hallways", |
163 | None, EntranceType.PAINTING, False, world) | 163 | None, EntranceType.PAINTING, False, world) |
164 | 164 | ||
165 | if painting_shuffle: | 165 | if painting_shuffle: |