From: Daniel Karbach Date: Mon, 1 Apr 2024 11:00:06 +0000 (+0200) Subject: fix aga DW access X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=1f91cd54bca46f686aaed871c9a7a7d000179ee0;p=alttp.git fix aga DW access --- 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), ), );