Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions Logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -729,13 +729,12 @@ def yeedil_defeat_mutated_protopet_rule(state: CollectionState, player: int) ->
and can_swingshot(state, player)
and can_infiltrate(state, player)
and can_dynamo(state, player)
and can_improved_jump(state, player))
and can_improved_jump(state, player)

return (can_hypnotize(state, player)
and can_swingshot(state, player)
and can_infiltrate(state, player)
and can_dynamo(state, player)
and can_improved_jump(state, player)
and can_electrolyze(state, player))


Expand Down Expand Up @@ -772,7 +771,6 @@ def yeedil_tractor_pillar_pb_rule(state: CollectionState, player: int) -> bool:
and can_swingshot(state, player)
and can_infiltrate(state, player)
and can_dynamo(state, player)
and can_improved_jump(state, player)
and can_electrolyze(state, player)
and can_tractor(state, player)
and can_grind(state, player))