From 1df9003fec27de2e0233cdf8ef7b72456448984b Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Sun, 30 Oct 2011 14:47:06 +1300 Subject: [PATCH] fixed #1169 - bot rallypoint debug changed to BotDebug() --- OpenRA.Mods.RA/AI/HackyAI.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.RA/AI/HackyAI.cs b/OpenRA.Mods.RA/AI/HackyAI.cs index 0ab288d003..7f7f04d58b 100644 --- a/OpenRA.Mods.RA/AI/HackyAI.cs +++ b/OpenRA.Mods.RA/AI/HackyAI.cs @@ -354,7 +354,7 @@ namespace OpenRA.Mods.RA.AI var possibleRallyPoints = world.FindTilesInCircle(startPos, 8).Where(IsRallyPointValid).ToArray(); if (possibleRallyPoints.Length == 0) { - Game.Debug("Bot Bug: No possible rallypoint near {0}", startPos); + BotDebug("Bot Bug: No possible rallypoint near {0}", startPos); return startPos; }