removed debugging output

master
Rochambeau 2019-07-14 20:23:52 +02:00
parent 96f4da9c14
commit 58576b9567
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ function settlements.check_distance_other_settlements(center_new_chunk)
-- local min_dist_settlements = 300
for i, pos in ipairs(settlements_in_world) do
local distance = vector.distance(center_new_chunk, pos)
minetest.chat_send_all("dist ".. distance)
-- minetest.chat_send_all("dist ".. distance)
if distance < settlements.min_dist_settlements then
return false
end