From 5234c8e92e1fdbfc5b2d4ea35d133ceae4f33a02 Mon Sep 17 00:00:00 2001 From: Temps Ray Date: Sat, 22 Jun 2024 10:44:26 -0400 Subject: [PATCH] Remove screen inversion if move animations are off --- src/phases.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/phases.ts b/src/phases.ts index 70a4af03305..7d856da06bd 100644 --- a/src/phases.ts +++ b/src/phases.ts @@ -3580,7 +3580,9 @@ export class DamagePhase extends PokemonPhase { super.start(); if (this.damageResult === HitResult.ONE_HIT_KO) { - this.scene.toggleInvert(true); + if (this.scene.moveAnimations) { + this.scene.toggleInvert(true); + } this.scene.time.delayedCall(Utils.fixedInt(1000), () => { this.scene.toggleInvert(false); this.applyDamage();