1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-07-31 14:50:19 +02:00
server-nalc/mods/riesenpilz/functions.lua
2014-12-11 18:53:00 +01:00

20 lines
404 B
Lua
Executable File

if riesenpilz.info then
function riesenpilz.inform(msg, spam, t)
if spam <= riesenpilz.max_spam then
local info
if t then
info = string.format("[riesenpilz] "..msg.." after ca. %.2fs", os.clock() - t)
else
info = "[riesenpilz] "..msg
end
print(info)
if riesenpilz.inform_all then
minetest.chat_send_all(info)
end
end
end
else
function riesenpilz.inform()
end
end