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

This commit is contained in:
michi_cc
2012-04-17 19:43:52 +00:00
parent 1a9a7b068d
commit 07f32df363
8 changed files with 53 additions and 0 deletions

View File

@@ -254,6 +254,8 @@ struct ConstructionSettings {
uint16 terraform_frame_burst; ///< how many tile heights may, over a short period, be terraformed?
uint32 clear_per_64k_frames; ///< how many tiles may, over a long period, be cleared per 65536 frames?
uint16 clear_frame_burst; ///< how many tiles may, over a short period, be cleared?
uint32 tree_per_64k_frames; ///< how many trees may, over a long period, be planted per 65536 frames?
uint16 tree_frame_burst; ///< how many trees may, over a short period, be planted?
};
/** Settings related to the AI. */