diff options
author | frosch <frosch@openttd.org> | 2009-12-19 22:17:02 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2009-12-19 22:17:02 +0000 |
commit | e46a9078e657323d191938c4c2e5a51225587832 (patch) | |
tree | fc1d4fe9001d4c04049b2ebe3a8a9002e79c00aa | |
parent | 2555c7966aced8c9f6ae66bf4a5725fa126f11cd (diff) | |
download | openttd-e46a9078e657323d191938c4c2e5a51225587832.tar.xz |
(svn r18554) -Change: Forbid industries to clear sea/river when leveling land.
-rw-r--r-- | src/industry_cmd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp index f148a789e..bf3455b3e 100644 --- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -1687,7 +1687,7 @@ static Industry *CreateNewIndustryHelper(TileIndex tile, IndustryType type, DoCo if (!_check_new_industry_procs[indspec->check_proc](tile)) return NULL; } - if (!custom_shape_check && _settings_game.game_creation.land_generator == LG_TERRAGENESIS && _generating_world && !_ignore_restrictions && !CheckIfCanLevelIndustryPlatform(tile, DC_NONE, it, type)) return NULL; + if (!custom_shape_check && _settings_game.game_creation.land_generator == LG_TERRAGENESIS && _generating_world && !_ignore_restrictions && !CheckIfCanLevelIndustryPlatform(tile, DC_NO_WATER, it, type)) return NULL; if (!CheckIfFarEnoughFromIndustry(tile, type)) return NULL; const Town *t = CheckMultipleIndustryInTown(tile, type); @@ -1699,7 +1699,7 @@ static Industry *CreateNewIndustryHelper(TileIndex tile, IndustryType type, DoCo if (flags & DC_EXEC) { Industry *i = new Industry(tile); - if (!custom_shape_check) CheckIfCanLevelIndustryPlatform(tile, DC_EXEC, it, type); + if (!custom_shape_check) CheckIfCanLevelIndustryPlatform(tile, DC_NO_WATER | DC_EXEC, it, type); DoCreateNewIndustry(i, tile, type, it, itspec_index, t, OWNER_NONE, founder); return i; |