Set default rally point to an empty path.

This commit is contained in:
Paul Chote
2020-01-26 21:06:04 +00:00
committed by abcdefg30
parent b2f0ac15e8
commit 585b8dc13c
7 changed files with 1 additions and 15 deletions

View File

@@ -40,7 +40,7 @@ namespace OpenRA.Mods.Common.Traits
public readonly bool IsPlayerPalette = true;
[Desc("A list of 0 or more offsets defining the initial rally point path.")]
public readonly CVec[] Path = { new CVec(1, 3) };
public readonly CVec[] Path = { };
public object Create(ActorInitializer init) { return new RallyPoint(init.Self, this); }
}