mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-03-07 15:13:52 -08:00
Super Mario Land 2: Fix Goal Logic (#5781)
This commit is contained in:
@@ -604,8 +604,8 @@ def macro_zone_4_coins(state, player, coins):
|
|||||||
|
|
||||||
|
|
||||||
def marios_castle_wario(state, player):
|
def marios_castle_wario(state, player):
|
||||||
return ((has_pipe_right(state, player) and has_pipe_left(state, player))
|
return (has_pipe_right(state, player) and
|
||||||
or state.has("Mario's Castle Midway Bell", player))
|
(has_pipe_left(state, player) or state.has("Mario's Castle Midway Bell", player)))
|
||||||
|
|
||||||
|
|
||||||
def marios_castle_midway_bell(state, player):
|
def marios_castle_midway_bell(state, player):
|
||||||
|
|||||||
Reference in New Issue
Block a user