Skip to content

Commit

Permalink
Update data/mods/gen9ssb/moves.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisXV authored May 2, 2024
1 parent 8b5ea8b commit fa62a42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/mods/gen9ssb/moves.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit fa62a42

Please sign in to comment.