File diff r25978:1911877bcb73 → r25979:1969d187766a
src/water_cmd.cpp
Show inline comments
 
@@ -474,14 +474,14 @@ CommandCost CmdBuildCanal(TileIndex tile
 
		if (slope != SLOPE_FLAT && (wc != WATER_CLASS_RIVER || !IsInclinedSlope(slope))) {
 
			return_cmd_error(STR_ERROR_FLAT_LAND_REQUIRED);
 
		}
 

	
 
		bool water = IsWaterTile(current_tile);
 

	
 
		/* can't make water of water! */
 
		if (water && (!IsTileOwner(current_tile, OWNER_WATER) || wc == WATER_CLASS_SEA)) continue;
 
		/* Outside the editor, prevent building canals over your own or OWNER_NONE owned canals */
 
		if (water && IsCanal(current_tile) && _game_mode != GM_EDITOR && (IsTileOwner(current_tile, _current_company) || IsTileOwner(current_tile, OWNER_NONE))) continue;
 

	
 
		ret = DoCommand(current_tile, 0, 0, flags, CMD_LANDSCAPE_CLEAR);
 
		if (ret.Failed()) return ret;
 

	
 
		if (!water) cost.AddCost(ret);