Blasphemous: Fix rules for platforming room in BotSS (#2231)

This commit is contained in:
Trevor L 2023-09-30 13:03:55 -06:00 committed by GitHub
parent fe6096464c
commit 5c640c6c52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

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