15 lines
288 B
Lua
15 lines
288 B
Lua
function rspawn:debug(message, data)
|
|
if not rspawn.debug_on then
|
|
return
|
|
end
|
|
|
|
local debug_data = ""
|
|
|
|
if data ~= nil then
|
|
debug_data = " :: "..dump(data)
|
|
end
|
|
local debug_string = "rspawn : "..message..debug_data
|
|
|
|
minetest.debug(debug_string)
|
|
end
|