(svn r12673) [NoAI] -Sync: with trunk r12596:12672. Note that due to the order rewrite AIOrder.ChangeOrder does currently not work as expected.
/* $Id$ */
/** @file ai_townlist.cpp Implementation of AITownList and friends. */
#include "ai_townlist.hpp"
#include "../../town.h"
AITownList::AITownList()
{
Town *t;
FOR_ALL_TOWNS(t) {
this->AddItem(t->index);
}
}