From a92016727f8a14f2be6d691a55c3938fe493fa16 Mon Sep 17 00:00:00 2001 From: innerthunder <168692175+innerthunder@users.noreply.github.com> Date: Tue, 19 Nov 2024 15:29:37 -0800 Subject: [PATCH] Fix confusion not applying correctly Co-authored-by: PigeonBar <56974298+PigeonBar@users.noreply.github.com> --- 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 678c958c34c..40aafe368da 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -5453,7 +5453,7 @@ export class ConfuseAttr extends AddBattlerTagAttr { return false; } - return false; + return super.apply(user, target, move, args); } }