From 1f91cd54bca46f686aaed871c9a7a7d000179ee0 Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Mon, 1 Apr 2024 13:00:06 +0200 Subject: [PATCH] fix aga DW access --- resources/js/helpers/logic.js | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/resources/js/helpers/logic.js b/resources/js/helpers/logic.js index de4da81..fa989f9 100644 --- a/resources/js/helpers/logic.js +++ b/resources/js/helpers/logic.js @@ -263,13 +263,10 @@ const southLightWorld = eastLightWorld; const eastDarkWorld = when(isInverted, or(canFly, canSwim, hasHammer, and(hasMirror, eastLightWorld)), - and( - hasMoonpearl, - or( - agaDead, - canHeavyLift, - and(canLift, hasHammer), - ), + or( + agaDead, + and(hasMoonpearl, canHeavyLift), + and(hasMoonpearl, canLift, hasHammer), ), ); -- 2.39.2