From d7f9b56879a8848894dd4b567de281de438dcaee Mon Sep 17 00:00:00 2001 From: Wlowscha <54003515+Wlowscha@users.noreply.github.com> Date: Tue, 25 Feb 2025 20:03:04 +0100 Subject: [PATCH] Fixing obsolete reference to filteredPokemonContainers --- src/ui/pokedex-ui-handler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/pokedex-ui-handler.ts b/src/ui/pokedex-ui-handler.ts index 45809c40fb6..b3655d80fa1 100644 --- a/src/ui/pokedex-ui-handler.ts +++ b/src/ui/pokedex-ui-handler.ts @@ -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(); };