diff --git a/src/data/move.ts b/src/data/move.ts index 5d28af0b307..42c3d77f8b3 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -1961,8 +1961,8 @@ export class StatusEffectAttr extends MoveEffectAttr { return false; } if ((!pokemon.status || (pokemon.status.effect === this.effect && moveChance < 0)) - && pokemon.checkIfCanSetStatus(this.effect, false, false, user) && pokemon.trySetStatus(this.effect, true, user, this.cureTurn)) { - applyPostAttackAbAttrs(ConfusionOnStatusEffectAbAttr, user, target, move, null, false, this.effect); + && pokemon.trySetStatus(this.effect, false, user, this.cureTurn)) { + applyPostAttackAbAttrs(ConfusionOnStatusEffectAbAttr, user, target, move, null, this.effect); return true; } }