From abe1b3c1ea81ad5d7254514f8067b528a2f5f29b Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Wed, 27 Jan 2010 19:47:57 +1300 Subject: [PATCH] Default MCV AllowUndeploy to true --- OpenRa.Game/Traits/ConstructionYard.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRa.Game/Traits/ConstructionYard.cs b/OpenRa.Game/Traits/ConstructionYard.cs index b2f8c80bf3..d616c468f3 100644 --- a/OpenRa.Game/Traits/ConstructionYard.cs +++ b/OpenRa.Game/Traits/ConstructionYard.cs @@ -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); } }