mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-08-15 14:43:32 -07:00
parent
e6f75f2c33
commit
9598c6c2e1
1 changed files with 1 additions and 1 deletions
|
|
@ -2280,7 +2280,7 @@ AttackPlan.prototype.Serialize = function()
|
|||
"siegeState": this.siegeState,
|
||||
"position5TurnsAgo": this.position5TurnsAgo,
|
||||
"lastPosition": this.lastPosition,
|
||||
"position": clone(this.position),
|
||||
"position": this.position !== undefined ? clone(this.position) : undefined,
|
||||
"isBlocked": this.isBlocked,
|
||||
"targetPlayer": this.targetPlayer,
|
||||
"target": this.target !== undefined ? this.target.id() : undefined,
|
||||
|
|
|
|||
Loading…
Reference in a new issue