1
0
mirror of https://github.com/HybridDog/vector_extras.git synced 2025-07-14 14:00:29 +02:00

2 Commits

View File

@ -1035,3 +1035,11 @@ for name,func in pairs(funcs) do
vector[name] = func
end
end
local time = (minetest.get_us_time() - load_time_start) / 1000000
local msg = "[vector_extras] loaded after ca. " .. time .. " seconds."
if time > 0.01 then
print(msg)
else
minetest.log("action", msg)
end