(svn r12849) [NoAI] -Fix: when .hpp.sq doesn't exists, don't run diff (tnx to Yexo)
/* $Id$ */
/** @file ai_controller.cpp Implementation of AIControler. */
#include "ai_controller.hpp"
#include "ai_object.hpp"
#include "ai_log.hpp"
#include "../../stdafx.h"
#include "../../openttd.h"
#include "../../player_func.h"
#include "../ai_threads.h"
/* static */ void AIController::Sleep(uint ticks)
{
AI_SuspendPlayer(_current_player, ticks);
}
/* static */ void AIController::Print(bool error_msg, const char *message)
{
AILog::Log(error_msg ? AILog::LOG_SQ_ERROR : AILog::LOG_SQ_INFO, message);
}