mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
TUNIC: Fix chest in incorrect region, incorrect key requirement (#3132)
This commit is contained in:
@@ -1434,9 +1434,9 @@ def set_er_location_rules(world: "TunicWorld", ability_unlocks: Dict[str, int])
|
||||
set_rule(multiworld.get_location("Ruined Atoll - [West] Near Kevin Block", player),
|
||||
lambda state: state.has(laurels, player))
|
||||
set_rule(multiworld.get_location("Ruined Atoll - [East] Locked Room Lower Chest", player),
|
||||
lambda state: state.has_any({laurels, key}, player))
|
||||
lambda state: state.has(laurels, player) or state.has(key, player, 2))
|
||||
set_rule(multiworld.get_location("Ruined Atoll - [East] Locked Room Upper Chest", player),
|
||||
lambda state: state.has_any({laurels, key}, player))
|
||||
lambda state: state.has(laurels, player) or state.has(key, player, 2))
|
||||
|
||||
# Frog's Domain
|
||||
set_rule(multiworld.get_location("Frog's Domain - Side Room Grapple Secret", player),
|
||||
|
Reference in New Issue
Block a user