diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-05-02 08:14:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-02 15:14:30 +0200 |
commit | 1979067701c475c0607d6f240362d8489242800e (patch) | |
tree | 04ef23a34e05683394a31bd19e55c7e7b5890074 | |
parent | 9c3bdec26936e8ea56c4c332acd1ca8f16a73327 (diff) | |
download | lingo-apworld-1979067701c475c0607d6f240362d8489242800e.tar.gz lingo-apworld-1979067701c475c0607d6f240362d8489242800e.tar.bz2 lingo-apworld-1979067701c475c0607d6f240362d8489242800e.zip |
Lingo: Fix broken good item in panelsanity (#3249)
-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 f7bf1ac..7019269 100644 --- a/player_logic.py +++ b/player_logic.py | |||
@@ -278,7 +278,7 @@ class LingoPlayerLogic: | |||
278 | "iterations. This is very unlikely to happen on its own, and probably indicates some " | 278 | "iterations. This is very unlikely to happen on its own, and probably indicates some " |
279 | "kind of logic error.") | 279 | "kind of logic error.") |
280 | 280 | ||
281 | if door_shuffle != ShuffleDoors.option_none and location_classification != LocationClassification.insanity \ | 281 | if door_shuffle != ShuffleDoors.option_none and location_checks != LocationChecks.option_insanity \ |
282 | and not early_color_hallways and world.multiworld.players > 1: | 282 | and not early_color_hallways and world.multiworld.players > 1: |
283 | # Under the combination of door shuffle, normal location checks, and no early color hallways, sphere 1 is | 283 | # Under the combination of door shuffle, normal location checks, and no early color hallways, sphere 1 is |
284 | # only three checks. In a multiplayer situation, this can be frustrating for the player because they are | 284 | # only three checks. In a multiplayer situation, this can be frustrating for the player because they are |