mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 05:13:58 -07:00
Also serialize unitCollUpdateArray in AttackPlan
It needs to be serialized so it's known which units to update next.
This commit is contained in:
parent
f35595610a
commit
9aea56e4a2
1 changed files with 2 additions and 1 deletions
|
|
@ -2273,7 +2273,8 @@ AttackPlan.prototype.Serialize = function()
|
|||
"target": this.target !== undefined ? this.target.id() : undefined,
|
||||
"targetPos": this.targetPos,
|
||||
"uniqueTargetId": this.uniqueTargetId,
|
||||
"path": this.path
|
||||
"path": this.path,
|
||||
"unitCollUpdateArray": this.unitCollUpdateArray
|
||||
};
|
||||
|
||||
return { "properties": properties };
|
||||
|
|
|
|||
Loading…
Reference in a new issue