From 6f3d1b911607668f71fe06aed02f3ddaf3c2f85a Mon Sep 17 00:00:00 2001 From: Bertie690 <136088738+Bertie690@users.noreply.github.com> Date: Sun, 3 Aug 2025 20:35:35 -0400 Subject: [PATCH] Update move.ts Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> --- src/data/moves/move.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/moves/move.ts b/src/data/moves/move.ts index 24b263a2a24..5c6b361c533 100644 --- a/src/data/moves/move.ts +++ b/src/data/moves/move.ts @@ -1312,8 +1312,8 @@ export class MoveEffectAttr extends MoveAttr { } /** Applies move effects so long as they are able based on {@linkcode canApply} */ - apply(user: Pokemon, target: Pokemon, move: Move, _args?: any[]): boolean { - return this.canApply(user, target, move, _args); + apply(user: Pokemon, target: Pokemon, move: Move, args?: any[]): boolean { + return this.canApply(user, target, move, args); } /**