From 7ff2b4726d97df9ff720fee56340e58f03020c2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bastos=20Dias?= <80102738+andrebastosdias@users.noreply.github.com> Date: Sun, 15 Mar 2026 22:11:55 +0000 Subject: [PATCH] Don't count nonexistent moves as physical (#2550) --- play.pokemonshowdown.com/src/battle-tooltips.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/play.pokemonshowdown.com/src/battle-tooltips.ts b/play.pokemonshowdown.com/src/battle-tooltips.ts index 34ecd7046..3d9d51320 100644 --- a/play.pokemonshowdown.com/src/battle-tooltips.ts +++ b/play.pokemonshowdown.com/src/battle-tooltips.ts @@ -2645,6 +2645,7 @@ export class BattleStatGuesser { for (let i = 0, len = set.moves.length; i < len; i++) { let move = this.dex.moves.get(set.moves[i]); + if (!move.exists) continue; hasMove[move.id] = 1; if (move.category === 'Status') { if (['batonpass', 'healingwish', 'lunardance'].includes(move.id)) {