From 97728357e442315962c62927032f1daa97ff107d Mon Sep 17 00:00:00 2001 From: truelight Date: Fri, 4 Feb 2005 14:24:23 +0000 Subject: (svn r1786) -Fix: unitnumber is increased to 16bit, so now you can have up to 5000 trains in one game (instead of the 240 which was the current value). Default max allowed vehicles per type is changed: Trains: 500 (old 80) Road: 500 (old 80) Ships: 200 (old 40) Aicraft: 300 (old 50) (Tnx to Celestar and Darkvater for checking the patch) --- settings.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'settings.c') diff --git a/settings.c b/settings.c index 4e299b7bb..61847f464 100644 --- a/settings.c +++ b/settings.c @@ -867,10 +867,10 @@ const SettingDesc patch_settings[] = { {"forbid_90_deg", SDT_BOOL, (void*)false, &_patches.forbid_90_deg, NULL}, {"improved_load", SDT_BOOL, (void*)false, &_patches.improved_load, NULL}, - {"max_trains", SDT_UINT8, (void*)80, &_patches.max_trains, NULL}, - {"max_roadveh", SDT_UINT8, (void*)80, &_patches.max_roadveh, NULL}, - {"max_aircraft", SDT_UINT8, (void*)40, &_patches.max_aircraft, NULL}, - {"max_ships", SDT_UINT8, (void*)50, &_patches.max_ships, NULL}, + {"max_trains", SDT_UINT16, (void*)500, &_patches.max_trains, NULL}, + {"max_roadveh", SDT_UINT16, (void*)500, &_patches.max_roadveh, NULL}, + {"max_aircraft", SDT_UINT16, (void*)200, &_patches.max_aircraft, NULL}, + {"max_ships", SDT_UINT16, (void*)300, &_patches.max_ships, NULL}, {"servint_ispercent", SDT_BOOL, (void*)false, &_patches.servint_ispercent, NULL}, {"servint_trains", SDT_UINT16, (void*)150, &_patches.servint_trains, NULL}, -- cgit v1.2.3-54-g00ecf