Pokemon Emerald: Fix opponent blacklist checking wrong option (#4058)
This commit is contained in:
parent
af0b5f8cf2
commit
26577b16dc
|
@ -177,7 +177,7 @@ class PokemonEmeraldWorld(World):
|
||||||
for species_name in self.options.trainer_party_blacklist.value
|
for species_name in self.options.trainer_party_blacklist.value
|
||||||
if species_name != "_Legendaries"
|
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
|
self.blacklisted_opponent_pokemon |= LEGENDARY_POKEMON
|
||||||
|
|
||||||
# In race mode we don't patch any item location information into the ROM
|
# In race mode we don't patch any item location information into the ROM
|
||||||
|
|
Loading…
Reference in New Issue