# HG changeset patch # User tron # Date 1107029881 0 # Node ID fab7257bad56721a9abf6b48ff070e71d447b127 # Parent 6a1f8d818d58090e13b0f5256280c761e9e36259 (svn r1724) Set maximum number of industries and towns to 250 each diff -r 6a1f8d818d58 -r fab7257bad56 industry.h --- a/industry.h Sat Jan 29 20:11:19 2005 +0000 +++ b/industry.h Sat Jan 29 20:18:01 2005 +0000 @@ -29,7 +29,7 @@ VARDEF int _total_industries; // For the AI: the amount of industries active -VARDEF Industry _industries[90]; +VARDEF Industry _industries[250]; VARDEF uint _industries_size; VARDEF uint16 *_industry_sort; diff -r 6a1f8d818d58 -r fab7257bad56 town.h --- a/town.h Sat Jan 29 20:11:19 2005 +0000 +++ b/town.h Sat Jan 29 20:18:01 2005 +0000 @@ -128,7 +128,7 @@ bool CheckforTownRating(uint tile, uint32 flags, Town *t, byte type); -VARDEF Town _towns[70]; +VARDEF Town _towns[250]; VARDEF uint _towns_size; VARDEF uint16 *_town_sort;