irc/messages.lua

18 lines
432 B
Lua
Raw Permalink Normal View History

2013-04-29 15:07:44 -07:00
-- This file is licensed under the terms of the BSD 2-clause license.
-- See LICENSE.txt for details.
irc.msgs = irc.lib.msgs
2013-04-29 15:07:44 -07:00
function irc.logChat(message)
2016-11-05 15:29:33 -07:00
minetest.log("action", "IRC CHAT: "..message)
end
function irc.sendLocal(message)
minetest.chat_send_all(minetest.colorize(irc.config.chat_color, message))
irc.logChat(message)
2013-04-29 15:07:44 -07:00
end
function irc.playerMessage(name, message)
2014-05-06 12:26:13 -07:00
return ("<%s> %s"):format(name, message)
2013-04-29 15:07:44 -07:00
end