From d9849c5e709837d0292998f2f82860ec2ff470aa Mon Sep 17 00:00:00 2001 From: Flashfyre Date: Tue, 9 Apr 2024 15:17:42 -0400 Subject: [PATCH] Ignore stat change animations when move animations are disabled --- src/phases.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phases.ts b/src/phases.ts index bd91b501e17..f768a118680 100644 --- a/src/phases.ts +++ b/src/phases.ts @@ -2540,7 +2540,7 @@ export class StatChangePhase extends PokemonPhase { this.end(); }; - if (relLevels.filter(l => l).length) { + if (relLevels.filter(l => l).length && this.scene.moveAnimations) { pokemon.enableMask(); const pokemonMaskSprite = pokemon.maskSprite;