Skip to content

Blasphemous: Fix rules for platforming room in BotSS #2231

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Sep 30, 2023
5 changes: 3 additions & 2 deletions worlds/blasphemous/Rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -4193,8 +4193,9 @@ def rules(blasphemousworld):
# Items
set_rule(world.get_location("BotSS: Platforming gauntlet", player),
lambda state: (
state.has("D17BZ02S01[FrontR]", player)
or state.has_all({"Dash Ability", "Wall Climb Ability"}, player)
#state.has("D17BZ02S01[FrontR]", player) or
# TODO: actually fix this once door rando is real
state.has_all({"Dash Ability", "Wall Climb Ability"}, player)
))
# Doors
set_rule(world.get_entrance("D17BZ02S01[FrontR]", player),
Expand Down