From 49b1e69f44079896925139c83003ea762a4209ed Mon Sep 17 00:00:00 2001 From: ScottNZ Date: Tue, 12 Nov 2013 18:36:25 +1300 Subject: [PATCH] Fix a stack overflow --- OpenRA.Mods.RA/Air/Aircraft.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.RA/Air/Aircraft.cs b/OpenRA.Mods.RA/Air/Aircraft.cs index e96664438a..75765c97eb 100755 --- a/OpenRA.Mods.RA/Air/Aircraft.cs +++ b/OpenRA.Mods.RA/Air/Aircraft.cs @@ -144,7 +144,7 @@ namespace OpenRA.Mods.RA.Air } public bool CanEnterCell(CPos location) { return true; } - public bool CanEnterCell(CPos cell, Actor ignoreActor, bool checkTransientActors) { return CanEnterCell(cell, null, true); } + public bool CanEnterCell(CPos cell, Actor ignoreActor, bool checkTransientActors) { return true; } public int MovementSpeed {