Including evolutions when filtering by biome
This commit is contained in:
parent
1d90bff5e5
commit
c78ea78be5
|
@ -1367,8 +1367,8 @@ export default class PokedexUiHandler extends MessageUiHandler {
|
||||||
|
|
||||||
// We get biomes for both the mon and its starters to ensure that evolutions get the correct filters.
|
// We get biomes for both the mon and its starters to ensure that evolutions get the correct filters.
|
||||||
// TODO: We might also need to do it the other way around.
|
// TODO: We might also need to do it the other way around.
|
||||||
// const biomes = catchableSpecies[container.species.speciesId].concat(catchableSpecies[this.getStarterSpeciesId(container.species.speciesId)]).map(b => Biome[b.biome]);
|
const biomes = catchableSpecies[container.species.speciesId].concat(catchableSpecies[this.getStarterSpeciesId(container.species.speciesId)]).map(b => Biome[b.biome]);
|
||||||
const biomes = catchableSpecies[container.species.speciesId].map(b => Biome[b.biome]);
|
//const biomes = catchableSpecies[container.species.speciesId].map(b => Biome[b.biome]);
|
||||||
// if (uncatchableSpecies.includes(container.species.speciesId) && biomes.length === 0) {
|
// if (uncatchableSpecies.includes(container.species.speciesId) && biomes.length === 0) {
|
||||||
if (biomes.length === 0) {
|
if (biomes.length === 0) {
|
||||||
biomes.push("Uncatchable");
|
biomes.push("Uncatchable");
|
||||||
|
|
Loading…
Reference in New Issue