From f62565ee9a47ae3d2c533c449d5e9116525d71ee Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Thu, 28 Jan 2010 22:24:10 +1300 Subject: [PATCH] fix crash --- OpenRa.Game/Traits/ParatroopersPower.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRa.Game/Traits/ParatroopersPower.cs b/OpenRa.Game/Traits/ParatroopersPower.cs index a8c2d15110..2505537515 100644 --- a/OpenRa.Game/Traits/ParatroopersPower.cs +++ b/OpenRa.Game/Traits/ParatroopersPower.cs @@ -67,7 +67,7 @@ namespace OpenRa.Traits var cargo = a.traits.Get(); foreach (var i in items) cargo.Load(a, new Actor(owner.World, i.ToLowerInvariant(), - new int2(int.MaxValue, int.MaxValue), a.Owner)); + new int2(0,0), a.Owner)); }); } }