summaryrefslogtreecommitdiff
path: root/industry_cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'industry_cmd.c')
-rw-r--r--industry_cmd.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/industry_cmd.c b/industry_cmd.c
index 067a91458..bd955dbab 100644
--- a/industry_cmd.c
+++ b/industry_cmd.c
@@ -378,7 +378,14 @@ static int32 ClearTile_Industry(uint tile, byte flags)
{
Industry *i = DEREF_INDUSTRY(_map2[tile]);
- if ((_current_player == OWNER_WATER || _game_mode != GM_EDITOR) && !_cheats.magic_bulldozer.value) {
+ /* * water can destroy industries
+ * in editor you can bulldoze industries
+ * with magic_bulldozer cheat you can destroy industries
+ * (area around OILRIG is water, so water shouldn't flood it
+ */
+ if ((_current_player != OWNER_WATER && _game_mode != GM_EDITOR &&
+ !_cheats.magic_bulldozer.value) ||
+ (_current_player == OWNER_WATER && i->type == IT_OIL_RIG) ) {
SET_DPARAM16(0, STR_4802_COAL_MINE + i->type);
return_cmd_error(STR_4800_IN_THE_WAY);
}