From 2bf00d37b6b6d373ca592cc26763cba2d018416c Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Wed, 9 Jan 2019 17:34:51 +0000 Subject: [PATCH] Remove debug error printing from ctf_map --- mods/ctf_map/schem_map.lua | 3 --- 1 file changed, 3 deletions(-) diff --git a/mods/ctf_map/schem_map.lua b/mods/ctf_map/schem_map.lua index 953274e..391f6a6 100644 --- a/mods/ctf_map/schem_map.lua +++ b/mods/ctf_map/schem_map.lua @@ -74,8 +74,6 @@ local function search_for_maps() local val = minetest.settings:get("ctf.maps." .. key:gsub("%./", ""):gsub("/", ".")) if not conf:get_bool("disabled", false) and val ~= "false" then table.insert(ctf_map.available_maps, key) - else - minetest.log("error", key .. " disabled!") end end if next(ctf_map.available_maps) == nil then @@ -83,7 +81,6 @@ local function search_for_maps() end return ctf_map.available_maps end -print(dump(search_for_maps())) minetest.register_chatcommand("maps_reload", { privs = { ctf_admin = true },