Update move.ts

Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
This commit is contained in:
Bertie690 2025-08-03 20:35:35 -04:00 committed by GitHub
parent 65f28b7dc4
commit 6f3d1b9116
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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);
}
/**