Skip to content

Commit

Permalink
Update Rules.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gaithern committed Jun 8, 2024
1 parent 5db1f4e commit 33237d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/kh1/Rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def has_oogie_manor(state: CollectionState, player: int, advanced_logic: bool) -
return (
has_item(state, player, "Progressive Fire")
or (advanced_logic and has_at_least(state, player, "High Jump", 2))
or (advanced_logic and has_item(state, player, "High Jump") and can_glide(state, player))))
or (advanced_logic and has_item(state, player, "High Jump") and can_glide(state, player))
)

def set_rules(multiworld: MultiWorld, player: int, options, eotw_required_reports: int, final_rest_door_required_reports: int, final_rest_door_requirement: str):
Expand Down

0 comments on commit 33237d7

Please sign in to comment.