Default MCV AllowUndeploy to true

This commit is contained in:
Paul Chote
2010-01-27 19:47:57 +13:00
parent d474f06ea9
commit abe1b3c1ea

View File

@@ -5,7 +5,7 @@ namespace OpenRa.Traits
{
class ConstructionYardInfo : ITraitInfo
{
public readonly bool AllowUndeploy = false;
public readonly bool AllowUndeploy = true;
public object Create(Actor self) { return new ConstructionYard(self); }
}