From f894f4ef76202228b949adba5572b33e3b3cdb59 Mon Sep 17 00:00:00 2001 From: Jesse Chung Date: Thu, 29 Aug 2024 21:56:52 -0700 Subject: [PATCH] #3772 good to go --- src/data/move.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/move.ts b/src/data/move.ts index 39287f1e1f2..c3374ebdb67 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -1956,7 +1956,7 @@ export class StatusEffectAttr extends MoveEffectAttr { } if ((!pokemon.status || (pokemon.status.effect === this.effect && moveChance < 0)) - && pokemon.trySetStatus(this.effect, true, user, this.cureTurn, null)) { + && pokemon.trySetStatus(this.effect, true, user, this.cureTurn)) { applyPostAttackAbAttrs(ConfusionOnStatusEffectAbAttr, user, target, move, null, false, this.effect); return true; }