spawnpoint/init.lua

13 lines
303 B
Lua
Raw Normal View History

2017-03-08 12:33:22 -08:00
-- spawnpoint/init.lua
2017-03-08 12:34:22 -08:00
spawnpoint = {}
local path = minetest.get_worldpath().."/spawnpoint.conf"
-- [function] Log
function spawnpoint.log(content, log_type)
if not content then return false end
if log_type == nil then log_type = "action" end
minetest.log(log_type, "[HUD Plus] "..content)
end