diff --git a/OpenRA.Game/Traits/Production.cs b/OpenRA.Game/Traits/Production.cs index 830b2d841f..00577f47d0 100755 --- a/OpenRA.Game/Traits/Production.cs +++ b/OpenRA.Game/Traits/Production.cs @@ -98,14 +98,11 @@ namespace OpenRA.Traits // Pick a spawn/exit point pair // Todo: Reorder in a synced random way foreach (var s in self.Info.Traits.WithInterface()) - { - System.Console.WriteLine("here"); if (mobile.CanEnterCell(self.Location + s.ExitCell,self,true)) { DoProduction(self, newUnit, s); return true; } - } return false; }