From 128249e63e319437b204169c9d0c5fcd2c19d7fb Mon Sep 17 00:00:00 2001 From: peter1138 Date: Sun, 22 Jan 2006 09:52:20 +0000 Subject: (svn r3416) - Fix: Disallow building an oil rig above sea level. --- industry_cmd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'industry_cmd.c') diff --git a/industry_cmd.c b/industry_cmd.c index ac5320005..4883e2078 100644 --- a/industry_cmd.c +++ b/industry_cmd.c @@ -1170,7 +1170,8 @@ static bool CheckNewIndustry_Oil(TileIndex tile, int type) { if (_game_mode == GM_EDITOR && _ignore_restrictions) return true; if (_game_mode == GM_EDITOR && type != IT_OIL_RIG) return true; - if (DistanceFromEdge(TILE_ADDXY(tile, 1, 1)) < 16) return true; + if ((type != IT_OIL_RIG || TileHeight(tile) == 0) && + DistanceFromEdge(TILE_ADDXY(tile, 1, 1)) < 16) return true; _error_message = STR_483B_CAN_ONLY_BE_POSITIONED; return false; -- cgit v1.2.3-54-g00ecf