summary refs log tree commit diff stats
path: root/player_logic.py
diff options
context:
space:
mode:
Diffstat (limited to 'player_logic.py')
-rw-r--r--player_logic.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/player_logic.py b/player_logic.py index b046f1c..fa497c5 100644 --- a/player_logic.py +++ b/player_logic.py
@@ -6,7 +6,6 @@ from .options import LocationChecks, ShuffleDoors, VictoryCondition
6from .static_logic import DOORS_BY_ROOM, Door, PAINTINGS, PAINTINGS_BY_ROOM, PAINTING_ENTRANCES, PAINTING_EXITS, \ 6from .static_logic import DOORS_BY_ROOM, Door, PAINTINGS, PAINTINGS_BY_ROOM, PAINTING_ENTRANCES, PAINTING_EXITS, \
7 PANELS_BY_ROOM, PROGRESSION_BY_ROOM, REQUIRED_PAINTING_ROOMS, REQUIRED_PAINTING_WHEN_NO_DOORS_ROOMS, RoomAndDoor, \ 7 PANELS_BY_ROOM, PROGRESSION_BY_ROOM, REQUIRED_PAINTING_ROOMS, REQUIRED_PAINTING_WHEN_NO_DOORS_ROOMS, RoomAndDoor, \
8 RoomAndPanel 8 RoomAndPanel
9from .testing import LingoTestOptions
10 9
11if TYPE_CHECKING: 10if TYPE_CHECKING:
12 from . import LingoWorld 11 from . import LingoWorld
@@ -224,7 +223,7 @@ class LingoPlayerLogic:
224 "kind of logic error.") 223 "kind of logic error.")
225 224
226 if door_shuffle != ShuffleDoors.option_none and location_classification != LocationClassification.insanity \ 225 if door_shuffle != ShuffleDoors.option_none and location_classification != LocationClassification.insanity \
227 and not early_color_hallways and LingoTestOptions.disable_forced_good_item is False: 226 and not early_color_hallways is False:
228 # If shuffle doors is on, force a useful item onto the HI panel. This may not necessarily get you out of BK, 227 # 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 228 # 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 229 # now. We only allow the entrance to the Pilgrim Room if color shuffle is off, because otherwise there are