Pokémon R/B: logic and location name fixes (#1752)

Corrects incorrect name listed for location in rules.py leading to logic rules failing to apply.
Swaps location names for incorrectly-named trainersanity checks in Viridian Gym
This commit is contained in:
Alchav
2023-04-23 16:17:03 -04:00
committed by GitHub
parent 67c3076572
commit 62a265cc31
3 changed files with 4 additions and 4 deletions

View File

@@ -146,7 +146,7 @@ def set_rules(world, player):
"Silph Co 11F - Rocket 2 (Card Key)": lambda state: state.has("Card Key", player),
"Silph Co 9F - Rocket 2 (Card Key)": lambda state: state.has("Card Key", player),
"Silph Co 3F - Scientist (Card Key)": lambda state: state.has("Card Key", player),
"Route 10 North - Pokemaniac": lambda state: state.pokemon_rb_can_surf(player),
"Route 10 - Pokemaniac": lambda state: state.pokemon_rb_can_surf(player),
"Rocket Hideout B1F - Rocket 5 (Lift Key)": lambda state: state.has("Lift Key", player),
"Rocket Hideout B4F - Rocket 2 (Lift Key)": lambda state: state.has("Lift Key", player),
"Rocket Hideout B4F - Rocket 3 (Lift Key)": lambda state: state.has("Lift Key", player),