(svn r21728) -Fix/Feature [FS#4331]: (configurably) limit amount of tiles that can be cleared/terraformed by a company
This commit is contained in:
@@ -2405,6 +2405,13 @@ bool AfterLoadGame()
|
||||
ClrBit(t->flags, 5);
|
||||
SetBit(t->vehicle_flags, VF_PATHFINDER_LOST);
|
||||
}
|
||||
|
||||
/* Introduced terraform/clear limits. */
|
||||
Company *c;
|
||||
FOR_ALL_COMPANIES(c) {
|
||||
c->terraform_limit = _settings_game.construction.terraform_frame_burst << 16;
|
||||
c->clear_limit = _settings_game.construction.clear_frame_burst << 16;
|
||||
}
|
||||
}
|
||||
|
||||
/* Road stops is 'only' updating some caches */
|
||||
|
Reference in New Issue
Block a user