From 07e60286f205ecdfeea5b9eea95beff046654e35 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Wed, 1 Sep 2010 20:25:43 +1200 Subject: [PATCH] whoops --- OpenRA.Game/Traits/Production.cs | 3 --- 1 file changed, 3 deletions(-) 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; }