Fix giving terastallize achievement for opponent

pull/16/head
Flashfyre 2024-02-19 10:25:28 -05:00
parent 07fcfcccaf
commit 5a0cbfad56
1 changed files with 5 additions and 3 deletions

View File

@ -564,9 +564,11 @@ export class TerastallizeModifier extends LapsingPokemonHeldItemModifier {
apply(args: any[]): boolean {
const pokemon = args[0] as Pokemon;
pokemon.scene.validateAchv(achvs.TERASTALLIZE);
if (this.teraType === Type.STELLAR)
pokemon.scene.validateAchv(achvs.STELLAR_TERASTALLIZE);
if (pokemon.isPlayer()) {
pokemon.scene.validateAchv(achvs.TERASTALLIZE);
if (this.teraType === Type.STELLAR)
pokemon.scene.validateAchv(achvs.STELLAR_TERASTALLIZE);
}
pokemon.updateSpritePipelineData();
return true;
}