(svn r9282) [NoAI] -Add: added AIAccounting, which tracks the cost of your buying/selling.
DoCommand no longer returns the cost, it returns a bool.
Costs are available via this Accounting class.
/* $Id$ */
/** @file ai_settings.cpp everything to change AI settings */
#include "ai_settings.hpp"
void AISettings::SetCommandDelay(uint ticks)
{
if (ticks == 0) return;
this->SetDoCommandDelay(ticks);
}