src/ai/api/ai_settings.cpp
author truebrain
Fri, 23 May 2008 08:52:29 +0000
branchnoai
changeset 10674 542470cee8a2
parent 9833 89a64246458f
permissions -rw-r--r--
(svn r13218) [NoAI] -Add: added a [S/E/P/W/I] in front of DEBUG messages from AILog, to indicate the level of message (the one that goes to the stdout) (request by Mchl)
/* $Id$ */

/** @file ai_settings.cpp Implementation of AISettings. */

#include "ai_settings.hpp"

/* static */ void AISettings::SetCommandDelay(uint ticks)
{
	if (ticks == 0) return;
	AIObject::SetDoCommandDelay(ticks);
}