Update src/data/move.ts

Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
This commit is contained in:
Sirz Benjie 2025-02-21 03:02:52 -06:00 committed by GitHub
parent 76599eba8d
commit 8573b019dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;