Merge branch 'pr-230' into jgrpp

This commit is contained in:
Jonathan G Rennison
2021-03-28 22:39:56 +01:00
5 changed files with 37 additions and 1 deletions

View File

@@ -365,7 +365,7 @@ void GenerateClearTile()
IncreaseGeneratingWorldProgress(GWP_ROUGH_ROCKY);
if (IsTileType(tile, MP_CLEAR) && !IsClearGround(tile, CLEAR_DESERT)) {
uint j = GB(r, 16, 4) + 5;
uint j = GB(r, 16, 4) + _settings_game.game_creation.amount_of_rocks + ((int)TileHeight(tile) * _settings_game.game_creation.height_affects_rocks);
for (;;) {
TileIndex tile_new;