diff --git a/industry_cmd.c b/industry_cmd.c index 67c496820a..75d278a289 100644 --- a/industry_cmd.c +++ b/industry_cmd.c @@ -1181,17 +1181,12 @@ extern bool _ignore_restrictions; static bool CheckNewIndustry_Oilwell(uint tile, int type) { - int x,y; - if(_ignore_restrictions && _game_mode == GM_EDITOR) return true; if (type != IT_OIL_RIG && _game_mode == GM_EDITOR) return true; - x = TileX(tile); - y = TileY(tile); - if (DistanceFromEdge(TILE_ADDXY(tile, 1, 1)) < 16) return true;