Pokemon Emerald: Fix opponent blacklist checking wrong option (#4058)

This commit is contained in:
Bryce Wilson 2024-10-15 14:28:36 -07:00 committed by GitHub
parent af0b5f8cf2
commit 26577b16dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ class PokemonEmeraldWorld(World):
for species_name in self.options.trainer_party_blacklist.value
if species_name != "_Legendaries"
}
if "_Legendaries" in self.options.starter_blacklist.value:
if "_Legendaries" in self.options.trainer_party_blacklist.value:
self.blacklisted_opponent_pokemon |= LEGENDARY_POKEMON
# In race mode we don't patch any item location information into the ROM