From fa62a42e5dd4ec4299f2fcfa4ede548ef9570b99 Mon Sep 17 00:00:00 2001 From: Kris Johnson <11083252+KrisXV@users.noreply.github.com> Date: Wed, 1 May 2024 20:01:43 -0600 Subject: [PATCH] Update data/mods/gen9ssb/moves.ts --- data/mods/gen9ssb/moves.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/mods/gen9ssb/moves.ts b/data/mods/gen9ssb/moves.ts index a09df450d..0e459b544 100644 --- a/data/mods/gen9ssb/moves.ts +++ b/data/mods/gen9ssb/moves.ts @@ -6649,7 +6649,7 @@ export const Moves: {[k: string]: ModdedMoveData} = { // signature Z moves are fine, as they actually have a base power. if (move.isZ && move.basePower === 1) continue; if (move.gen > this.gen) continue; - if (move.isMax === true && move.basePower === 10) continue; + if (move.isMax) continue; moves.push(move.name); } let randomMove: string;