fix more bad merge (source move not passed to tag)

This commit is contained in:
snoozbuster 2024-08-13 21:10:13 -07:00
parent f5fabbb159
commit 88dcaa3d20
1 changed files with 1 additions and 1 deletions

View File

@ -1034,7 +1034,7 @@ export class AddBattlerTagHeaderAttr extends MoveHeaderAttr {
}
apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean {
return user.addTag(this.tagType);
return user.addTag(this.tagType, 0, move.id);
}
}