fixed #1169 - bot rallypoint debug changed to BotDebug()

This commit is contained in:
Chris Forbes
2011-10-30 14:47:06 +13:00
parent f83c9fd4d7
commit 1df9003fec

View File

@@ -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;
}