Skip to content

Commit

Permalink
Another useful classification
Browse files Browse the repository at this point in the history
  • Loading branch information
NewSoupVi committed Jan 2, 2024
1 parent ae6a5a1 commit 8c466e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions worlds/witness/player_logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ def determine_unrequired_entities(self, world: "WitnessWorld"):
come_to_you = world.options.elevators_come_to_you
difficulty = world.options.puzzle_randomization
discards_shuffled = world.options.shuffle_discarded_panels
vaults_shuffled = world.options.shuffle_vault_boxes
boat_shuffled = world.options.shuffle_boat
symbols_shuffled = world.options.shuffle_symbols
disable_non_randomized = world.options.disable_non_randomized_puzzles
postgame = world.options.shuffle_postgame
Expand All @@ -508,7 +508,7 @@ def determine_unrequired_entities(self, world: "WitnessWorld"):
"0x275FA": eps_shuffled, # Boathouse Hook Control
"0x17D02": eps_shuffled, # Windmill Turn Control
"0x17CC4": come_to_you or eps_shuffled, # Quarry Elevator Panel
"0x17E2B": come_to_you or eps_shuffled, # Swamp Long Bridge
"0x17E2B": come_to_you and not boat_shuffled or eps_shuffled, # Swamp Long Bridge
"0x0CF2A": False, # Jungle Monastery Garden Shortcut
"0x17CAA": doors >= 2, # Jungle Monastery Garden Shortcut Panel
"0x0364E": False, # Monastery Laser Shortcut Door
Expand Down

0 comments on commit 8c466e2

Please sign in to comment.