The Witness: Fix Expert PP2 Access Logic

This commit is contained in:
NewSoupVi 2022-11-28 00:01:37 +01:00 committed by Fabian Dill
parent 111c3186bd
commit e641c3ca1b
1 changed files with 6 additions and 4 deletions

View File

@ -123,13 +123,15 @@ class WitnessLogic(LogicMixin):
or hedge_access or hedge_access
) )
) )
shadows_shortcut = (
self.can_reach("Main Island", "Region", player)
and self.can_reach("Keep 4th Pressure Plate to Shadows", "Entrance", player)
)
backwards_access = ( backwards_access = (
self.can_reach("Keep 3rd Pressure Plate to Keep 4th Pressure Plate", "Entrance", player) self.can_reach("Keep 3rd Pressure Plate to Keep 4th Pressure Plate", "Entrance", player)
and backwards_to_fourth and (backwards_to_fourth or shadows_shortcut)
or self.can_reach("Main Island", "Region", player)
and self.can_reach("Keep 4th Pressure Plate to Shadows", "Entrance", player)
) )
front_access = ( front_access = (