Fix starting moveset

This commit is contained in:
AJ Fontaine 2025-03-21 23:19:19 -04:00
parent 16df3fd806
commit 632b44df2f

View File

@ -1000,10 +1000,7 @@ export class MetronomeChallenge extends Challenge {
}
override applyMovesetModify(pokemon: Pokemon): boolean {
pokemon.setMove(0, Moves.METRONOME);
pokemon.setMove(1, Moves.NONE);
pokemon.setMove(2, Moves.NONE);
pokemon.setMove(3, Moves.NONE);
pokemon.moveset = [new PokemonMove(Moves.METRONOME)];
return true;
}