diff -r 5ff88ba55601 -r 6eb3ab1bc33c town.h --- a/town.h Mon May 09 19:56:08 2005 +0000 +++ b/town.h Mon May 09 22:33:00 2005 +0000 @@ -157,6 +157,11 @@ return _town_pool.total_items; } +static inline bool IsTownIndex(uint index) +{ + return index < GetTownPoolSize(); +} + #define FOR_ALL_TOWNS_FROM(t, start) for (t = GetTown(start); t != NULL; t = (t->index + 1 < GetTownPoolSize()) ? GetTown(t->index + 1) : NULL) #define FOR_ALL_TOWNS(t) FOR_ALL_TOWNS_FROM(t, 0)