Skip to content

Commit

Permalink
Fix missing PB requirement in life grove tunnel
Browse files Browse the repository at this point in the history
  • Loading branch information
hesto2 committed Jun 27, 2024
1 parent bb39edb commit 787ba40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/TallonOverworld.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ class TallonOverworldAreaData(AreaData):
1: DoorData(RoomName.Life_Grove, defaultLock=DoorLockType.None_, rule_func=lambda state, player: can_power_bomb(state, player) and can_boost(state, player), exclude_from_rando=True)
},
pickups=[
PickupData('Tallon Overworld: Life Grove Tunnel', rule_func=lambda state, player: can_bomb(state, player) and can_boost(state, player)),
PickupData('Tallon Overworld: Life Grove Tunnel', rule_func=lambda state, player: can_power_bomb(state, player) and can_bomb(state, player) and can_boost(state, player)),
]),

RoomName.Life_Grove: RoomData(
Expand Down

0 comments on commit 787ba40

Please sign in to comment.