From 7588d6708bb0f1c80a79978e9a895b813d613663 Mon Sep 17 00:00:00 2001 From: Forcecore Date: Thu, 9 Mar 2017 09:42:56 -0600 Subject: [PATCH] HackyAI now builds refinery near ore. --- OpenRA.Mods.Common/AI/HackyAI.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/AI/HackyAI.cs b/OpenRA.Mods.Common/AI/HackyAI.cs index ab485fec0d..a4b775dad5 100644 --- a/OpenRA.Mods.Common/AI/HackyAI.cs +++ b/OpenRA.Mods.Common/AI/HackyAI.cs @@ -562,7 +562,7 @@ namespace OpenRA.Mods.Common.AI foreach (var r in nearbyResources) { - var found = findPos(r, baseCenter, Info.MinBaseRadius, Info.MaxBaseRadius); + var found = findPos(baseCenter, r, Info.MinBaseRadius, Info.MaxBaseRadius); if (found != null) return found; }