Remove debug print commands

master
Joachim Stolberg 2021-08-02 20:20:21 +02:00
parent 3c34ca681e
commit 7d66369908
2 changed files with 1 additions and 2 deletions

View File

@ -30,7 +30,6 @@ dofile(MP .. "/power.lua")
dofile(MP .. "/liquid.lua")
dofile(MP .. "/control.lua")
print("networks_test_enabled", minetest.settings:get_bool("networks_test_enabled"))
if minetest.settings:get_bool("networks_test_enabled") == true then
-- Only for testing/demo purposes
dofile(MP .. "/test/test_liquid.lua")

View File

@ -328,7 +328,7 @@ local function remove_outdated_networks()
for _,item in ipairs(to_be_deleted) do
local net_name, netID = unpack(item)
Networks[net_name][netID] = nil
print("Network " .. netw_num(netID) .. " timed out")
--print("Network " .. netw_num(netID) .. " timed out")
end
minetest.after(60, remove_outdated_networks)
end