From 8573b019dce8588f9afd8ffee264703f3cd19b8c Mon Sep 17 00:00:00 2001 From: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Date: Fri, 21 Feb 2025 03:02:52 -0600 Subject: [PATCH] Update src/data/move.ts Co-authored-by: NightKev <34855794+DayKev@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 e6d0a9fddfe..de5c83131d9 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -1324,7 +1324,7 @@ export class PreMoveMessageAttr extends MoveAttr { * @extends MoveAttr */ export class PreUseInterruptAttr extends MoveAttr { - protected message: string | ((user: Pokemon, target: Pokemon, move: Move) => string) | undefined; + protected message?: string | ((user: Pokemon, target: Pokemon, move: Move) => string); protected overridesFailedMessage: boolean; protected conditionFunc: MoveConditionFunc;