Remove mod startup debug messages

This commit is contained in:
Wuzzy 2020-04-11 02:50:46 +02:00
parent 47cda09073
commit a2785041dd
45 changed files with 0 additions and 200 deletions

View file

@ -1,4 +1,3 @@
local init = os.clock()
mcl_doors = {}
local this = minetest.get_current_modname()
@ -8,7 +7,3 @@ dofile(path.."/api_doors.lua") -- Doors API
dofile(path.."/api_trapdoors.lua") -- Trapdoors API
dofile(path.."/register.lua") -- Register builtin doors and trapdoors
dofile(path.."/alias.lua") -- Legacy aliases
-- Debug info
local time_to_load= os.clock() - init
minetest.log("action", (string.format("[MOD] "..this.." loaded in %.4f s", time_to_load)))