mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 12:11:33 -06:00
MLSS: Fix generation error with emblem hunt and no digspots (#4859)
This commit is contained in:
@@ -148,12 +148,13 @@ def set_rules(world: "MLSSWorld", excluded):
|
|||||||
and StateLogic.canDash(state, world.player)
|
and StateLogic.canDash(state, world.player)
|
||||||
and StateLogic.canCrash(state, world.player)
|
and StateLogic.canCrash(state, world.player)
|
||||||
)
|
)
|
||||||
add_rule(
|
if world.options.chuckle_beans != 0:
|
||||||
world.get_location(LocationName.BowsersCastleWendyLarryHallwayDigspot),
|
add_rule(
|
||||||
lambda state: StateLogic.ultra(state, world.player)
|
world.get_location(LocationName.BowsersCastleWendyLarryHallwayDigspot),
|
||||||
and StateLogic.fire(state, world.player)
|
lambda state: StateLogic.ultra(state, world.player)
|
||||||
and StateLogic.canCrash(state, world.player)
|
and StateLogic.fire(state, world.player)
|
||||||
)
|
and StateLogic.canCrash(state, world.player)
|
||||||
|
)
|
||||||
add_rule(
|
add_rule(
|
||||||
world.get_location(LocationName.BowsersCastleBeforeFawfulFightBlock1),
|
world.get_location(LocationName.BowsersCastleBeforeFawfulFightBlock1),
|
||||||
lambda state: StateLogic.canDig(state, world.player)
|
lambda state: StateLogic.canDig(state, world.player)
|
||||||
|
Reference in New Issue
Block a user