diff --git a/data/cg-teams.ts b/data/cg-teams.ts index 0d24be79de45..a97d35a362bb 100644 --- a/data/cg-teams.ts +++ b/data/cg-teams.ts @@ -238,7 +238,9 @@ export default class TeamGenerator { } movePoolIsTrimmed = true; } else { - weights = movePool.map(m => this.getMoveWeight(this.dex.moves.get(m), teamStats, species, moves, movesStats, ability, level)); + weights = movePool.map( + m => this.getMoveWeight(this.dex.moves.get(m), teamStats, species, moves, movesStats, ability, level) + ); } const moveID = this.weightedRandomPick(movePool, weights, {remove: true});