Allow queued structure rallypoints.

This commit is contained in:
tovl
2019-08-31 19:55:11 +02:00
committed by abcdefg30
parent 3236499fb7
commit 203fff0ab7
9 changed files with 65 additions and 40 deletions

View File

@@ -79,8 +79,8 @@ namespace OpenRA.Mods.Common.Scripting
[Desc("Query or set a factory's rally point.")]
public CPos RallyPoint
{
get { return rp.Location; }
set { rp.Location = value; }
get { return rp.Path.Last(); }
set { rp.Path = new List<CPos> { value }; }
}
}