1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-12 09:09:09 +00:00

(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)
This commit is contained in:
truelight
2005-02-04 14:24:23 +00:00
parent 7be92db76f
commit 97728357e4
10 changed files with 26 additions and 23 deletions

View File

@@ -7,7 +7,7 @@
#include "saveload.h"
enum {
SAVEGAME_MAJOR_VERSION = 7,
SAVEGAME_MAJOR_VERSION = 8,
SAVEGAME_MINOR_VERSION = 0,
SAVEGAME_LOADABLE_VERSION = (SAVEGAME_MAJOR_VERSION << 8) + SAVEGAME_MINOR_VERSION