Rotate optics and doors from NodeCore with ease.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
298 B

local ipairs, tostring
= ipairs, tostring
local minetest
= minetest
local utility = {}
local function debug_tell(...)
local text = ""
for _, v in ipairs({...}) do text = text .. tostring(v) end
minetest.chat_send_all(text)
end
utility.debug_tell = debug_tell
return utility