diff --git a/data/moves.ts b/data/moves.ts index e89e334f228e7..93114ae7bf1e2 100644 --- a/data/moves.ts +++ b/data/moves.ts @@ -11640,7 +11640,7 @@ export const BattleMovedex: {[moveid: string]: MoveData} = { const moves: MoveData[] = []; for (const id in exports.BattleMovedex) { const move = exports.BattleMovedex[id]; - if (id !== move.id) continue; + if (move.realMove) continue; if (move.isZ || move.isMax || move.isNonstandard) continue; if (effect.noMetronome!.includes(move.id)) continue; if (this.dex.getMove(id).gen > this.gen) continue;