additional triple fusions + small pokedex fixes

This commit is contained in:
infinitefusion
2022-04-24 13:49:58 -04:00
parent b190416123
commit c01641e73c
28 changed files with 50 additions and 20 deletions

View File

@@ -87,7 +87,11 @@ class Player < Trainer
end
def set_seen_triple(species)
species_id = GameData::Species.try_get(species)&.species
if species.is_a?(Pokemon)
species_id = species.species
else
species_id = GameData::Species.try_get(species)&.species
end
return if species_id.nil?
@seen_triple[species_id] = true
end