From f4fedfed070ffd85c3446bc5d38d2fbd577640d6 Mon Sep 17 00:00:00 2001 From: Lars Hofhansl Date: Wed, 29 Nov 2017 22:55:37 -0800 Subject: [PATCH] Turn off verbose info message introduced accidentally with ae9b1aa --- src/clientiface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clientiface.cpp b/src/clientiface.cpp index 8e469cafb..a3c44fb9e 100644 --- a/src/clientiface.cpp +++ b/src/clientiface.cpp @@ -199,7 +199,7 @@ void RemoteClient::GetNextBlocks ( const s16 full_d_max = std::min(adjustDist(m_max_send_distance, camera_fov), wanted_range); const s16 d_opt = std::min(adjustDist(m_block_optimize_distance, camera_fov), wanted_range); const s16 d_blocks_in_sight = full_d_max * BS * MAP_BLOCKSIZE; - infostream << "Fov from client " << camera_fov << " full_d_max " << full_d_max << std::endl; + //infostream << "Fov from client " << camera_fov << " full_d_max " << full_d_max << std::endl; s16 d_max = full_d_max; s16 d_max_gen = std::min(adjustDist(m_max_gen_distance, camera_fov), wanted_range);