yl_api_nodestages/internal.lua
2024-06-12 18:01:52 +02:00

10 lines
415 B
Lua

-- The functions and variables in this file are only for use in the mod itself.
-- Those that do real work should be local and wrapped in public functions
local function log(text)
local logmessage = yl_api_food.t("log_prefix", yl_api_food.modname, text)
if yl_api_food.settings.debug then minetest.log("action", logmessage) end
return logmessage
end
function yl_api_food.log(text) return log(text) end