From 62dfeac441dc8a342a1a67d1843c4db988ebaa19 Mon Sep 17 00:00:00 2001 From: Scrungip <95324612+Scrungip@users.noreply.github.com> Date: Sun, 18 Jan 2026 07:43:30 -0600 Subject: [PATCH] Super Mario Land 2: Fix Goal Logic (#5781) --- worlds/marioland2/logic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/worlds/marioland2/logic.py b/worlds/marioland2/logic.py index 492ba80a12..54685f91a0 100644 --- a/worlds/marioland2/logic.py +++ b/worlds/marioland2/logic.py @@ -604,8 +604,8 @@ def macro_zone_4_coins(state, player, coins): def marios_castle_wario(state, player): - return ((has_pipe_right(state, player) and has_pipe_left(state, player)) - or state.has("Mario's Castle Midway Bell", player)) + return (has_pipe_right(state, player) and + (has_pipe_left(state, player) or state.has("Mario's Castle Midway Bell", player))) def marios_castle_midway_bell(state, player):