Skip to content

Commit

Permalink
Update LogicPredicates.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Ishigh1 committed Mar 2, 2024
1 parent 1c83e05 commit 0815a8d
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions worlds/tloz_oos/data/logic/LogicPredicates.py
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,10 @@ def oos_can_use_gale_seeds_offensively(state: CollectionState, player: int):
oos_has_slingshot(state, player)
]),
all([
oos_option_hard_logic(state, player),
any([
oos_option_hard_logic(state, player),
oos_has_feather(state, player)
]),
oos_has_satchel(state, player)
]),
])
Expand Down Expand Up @@ -630,7 +633,14 @@ def oos_can_kill_normal_using_satchel(state: CollectionState, player: int):
oos_option_medium_logic(state, player),
any([
oos_has_scent_seeds(state, player),
oos_has_gale_seeds(state, player),
all([
oos_has_gale_seeds(state, player),
oos_has_mystery_seeds(state, player),
any([
oos_option_hard_logic(state, player),
oos_has_feather(state, player)
])
]),
])
])
])
Expand All @@ -645,6 +655,7 @@ def oos_can_kill_normal_using_slingshot(state: CollectionState, player: int):
oos_has_scent_seeds(state, player),
all([
oos_option_medium_logic(state, player),
oos_has_mystery_seeds(state, player),
oos_has_gale_seeds(state, player),
])
])
Expand Down

0 comments on commit 0815a8d

Please sign in to comment.