From 250a529cc997e30f7887f80168265942fb53aa6a Mon Sep 17 00:00:00 2001 From: Jesse Chung Date: Mon, 26 Aug 2024 20:04:37 -0700 Subject: [PATCH] #3722 merge fix something did not come with --- 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 f20d19723a8..925307d1060 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -1949,7 +1949,7 @@ export class StatusEffectAttr extends MoveEffectAttr { } } if ((!pokemon.status || (pokemon.status.effect === this.effect && moveChance < 0)) - && pokemon.trySetStatus(this.effect, true, user, this.cureTurn)) { + && pokemon.trySetStatus(this.effect, false, user, this.cureTurn)) { applyPostAttackAbAttrs(ConfusionOnStatusEffectAbAttr, user, target, move, null, false, this.effect); return true; }