diff --git a/play.pokemonshowdown.com/src/battle-dex-search.ts b/play.pokemonshowdown.com/src/battle-dex-search.ts index 340051176..74688f1e9 100644 --- a/play.pokemonshowdown.com/src/battle-dex-search.ts +++ b/play.pokemonshowdown.com/src/battle-dex-search.ts @@ -1661,7 +1661,7 @@ class BattleMoveSearch extends BattleTypedSearch<'move'> { } const moveData = dex.moves.get(id); if (!moveData) return true; - if (!BattleMovedex[id].exists) return true; //Flag ALL custom moves as viable by default (unviable custom moves almost never happen, no need to add extra steps to create multi-hit moves) + if (!BattleMovedex[id].exists) return true; //Flag custom moves as viable by default if (moveData.category === 'Status') { return BattleMoveSearch.GOOD_STATUS_MOVES.includes(id); }