(svn r24134) -Add: Configurable limits for tree planting.

This commit is contained in:
michi_cc
2012-04-17 19:43:52 +00:00
parent 181de38ae3
commit f3e295b4ec
8 changed files with 53 additions and 0 deletions

View File

@@ -2736,6 +2736,12 @@ bool AfterLoadGame()
}
}
if (IsSavegameVersionBefore(175)) {
/* Introduced tree planting limit. */
Company *c;
FOR_ALL_COMPANIES(c) c->tree_limit = _settings_game.construction.tree_frame_burst << 16;
}
/* Road stops is 'only' updating some caches */
AfterLoadRoadStops();
AfterLoadLabelMaps();