Fixing obsolete reference to filteredPokemonContainers

This commit is contained in:
Wlowscha 2025-02-25 20:03:04 +01:00
parent 8cc5f650f3
commit d7f9b56879
No known key found for this signature in database
GPG Key ID: 3C8F1AD330565D04

View File

@ -1538,7 +1538,7 @@ export default class PokedexUiHandler extends MessageUiHandler {
return 0;
});
this.filteredIndices = this.filteredPokemonContainers.map(c => c.species.speciesId);
this.filteredIndices = this.filteredPokemonData.map(c => c.species.speciesId);
this.updateScroll();
};