Skip to content

Commit

Permalink
fix another rule
Browse files Browse the repository at this point in the history
  • Loading branch information
drtchops committed Dec 7, 2024
1 parent 5decc16 commit 9d9e987
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions worlds/astalon/rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,8 +389,8 @@ def __call__(self, state: CollectionState, *items: T, disabled_case: Union[bool,
(R.MECH_WATCHER, R.MECH_ROOTS): lambda rules, state: (
rules.has(state, KeyItem.CLAW) or rules.switches(state, Switch.MECH_WATCHER, disabled_case=True)
),
(R.MECH_ROOTS, R.MECH_ZEEK_CONNECTION): lambda rules, state: rules.has(
state, KeyItem.CLAW, KeyItem.BLOCK, KeyItem.BELL
(R.MECH_ROOTS, R.MECH_ZEEK_CONNECTION): lambda rules, state: (
rules.has(state, KeyItem.CLAW, KeyItem.BLOCK, KeyItem.BELL)
),
(R.MECH_ROOTS, R.MECH_MUSIC): lambda rules, state: (
rules.blue_doors(state, BlueDoor.MECH_MUSIC, disabled_case=True)
Expand Down Expand Up @@ -1716,7 +1716,7 @@ def __call__(self, state: CollectionState, *items: T, disabled_case: Union[bool,
L.GT_SWITCH_BUTT_ACCESS: lambda rules, state: rules.can(state, Logic.EXTRA_HEIGHT),
L.GT_SWITCH_UPPER_PATH_ACCESS: lambda rules, state: (
rules.switches(state, Switch.GT_UPPER_PATH_BLOCKS, disabled_case=True)
or rules.has(state, Character.KYULI, KeyItem.BLOCK, Character.ZEEK)
or rules.has(state, Character.KYULI, KeyItem.BLOCK, Character.ZEEK, KeyItem.BELL)
),
L.GT_CRYSTAL_LADDER: lambda rules, state: rules.can(state, Logic.CRYSTAL),
L.GT_CRYSTAL_ROTA: lambda rules, state: (
Expand Down

0 comments on commit 9d9e987

Please sign in to comment.