From 7a1df759788de3c22d8002156e0419adec3e0a9e Mon Sep 17 00:00:00 2001 From: Blitzy <118096277+Blitz425@users.noreply.github.com> Date: Thu, 24 Apr 2025 23:12:42 -0500 Subject: [PATCH] Talonflame no longer has an illegal move :) --- src/data/trainers/trainer-config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/trainers/trainer-config.ts b/src/data/trainers/trainer-config.ts index 04320a13b49..7267a30d9fb 100644 --- a/src/data/trainers/trainer-config.ts +++ b/src/data/trainers/trainer-config.ts @@ -3328,7 +3328,7 @@ export const trainerConfigs: TrainerConfigs = { p.generateAndPopulateMoveset(); if (!p.moveset.some(move => !isNullOrUndefined(move) && move.moveId === Moves.SUNNY_DAY)) { // Check if Sunny Day is in the moveset, if not, replace the third move with Sunny Day. - p.moveset[2] = new PokemonMove(Moves.TECHNO_BLAST); + p.moveset[2] = new PokemonMove(Moves.SUNNY_DAY); } }), )