diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-01-16 09:10:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-16 15:10:59 +0100 |
commit | 2ae583308c4c4fc4a5adacdc458861fa6488037b (patch) | |
tree | 76ee596d1649ad3d3576a048ddafe805065c46a9 /player_logic.py | |
parent | 9f37bc30d74919190040b2b3e539448675e9824e (diff) | |
download | lingo-apworld-2ae583308c4c4fc4a5adacdc458861fa6488037b.tar.gz lingo-apworld-2ae583308c4c4fc4a5adacdc458861fa6488037b.tar.bz2 lingo-apworld-2ae583308c4c4fc4a5adacdc458861fa6488037b.zip |
Lingo: Disable forced good item when early color hallways is on (#2729)
Diffstat (limited to 'player_logic.py')
-rw-r--r-- | player_logic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/player_logic.py b/player_logic.py index 57bcc4b..f3efc29 100644 --- a/player_logic.py +++ b/player_logic.py | |||
@@ -224,7 +224,7 @@ class LingoPlayerLogic: | |||
224 | "kind of logic error.") | 224 | "kind of logic error.") |
225 | 225 | ||
226 | if door_shuffle != ShuffleDoors.option_none and location_classification != LocationClassification.insanity \ | 226 | if door_shuffle != ShuffleDoors.option_none and location_classification != LocationClassification.insanity \ |
227 | and not early_color_hallways is False: | 227 | and not early_color_hallways: |
228 | # If shuffle doors is on, force a useful item onto the HI panel. This may not necessarily get you out of BK, | 228 | # If shuffle doors is on, force a useful item onto the HI panel. This may not necessarily get you out of BK, |
229 | # but the goal is to allow you to reach at least one more check. The non-painting ones are hardcoded right | 229 | # but the goal is to allow you to reach at least one more check. The non-painting ones are hardcoded right |
230 | # now. We only allow the entrance to the Pilgrim Room if color shuffle is off, because otherwise there are | 230 | # now. We only allow the entrance to the Pilgrim Room if color shuffle is off, because otherwise there are |