diff options
author | belugas <belugas@openttd.org> | 2009-03-12 23:54:20 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2009-03-12 23:54:20 +0000 |
commit | f6e4bc765ae9a69e3e0622724c6859d5b315c4af (patch) | |
tree | fa98a505935dda8630df645a1ed2db85cd425e43 /src/saveload | |
parent | af18469455ff19d223ba7e7114f42041fb35aab7 (diff) | |
download | openttd-f6e4bc765ae9a69e3e0622724c6859d5b315c4af.tar.xz |
(svn r15695) -Feature [FS#2672]: Allow the number of towns that will be generated in the generate world window to be customized.
Some warnings:
-the maximum number of towns to be accepted is set to 5000
-the minimum number of towns to be accepted is set to 1
-the number that is specified is NOT guaranteed to be the exact number of towns generated. The normal mechanism of town creation has not been modified. So town placement can still fail.
-setting a custom number of town will change your difficulty settings to custom as well
Diffstat (limited to 'src/saveload')
-rw-r--r-- | src/saveload/saveload.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/saveload/saveload.cpp b/src/saveload/saveload.cpp index f30440d5a..f904d45d1 100644 --- a/src/saveload/saveload.cpp +++ b/src/saveload/saveload.cpp @@ -40,7 +40,7 @@ #include "saveload_internal.h" -extern const uint16 SAVEGAME_VERSION = 114; +extern const uint16 SAVEGAME_VERSION = 115; SavegameType _savegame_type; ///< type of savegame we are loading |