Super Mario Land 2: Fix Goal Logic (#5781)

This commit is contained in:
Scrungip
2026-01-18 07:43:30 -06:00
committed by GitHub
parent b81e1a228a
commit 62dfeac441

View File

@@ -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):