2015-09-17 20:51:25 +02:00
|
|
|
-- This file is licensed under the terms of the BSD 2-clause license.
|
|
|
|
-- See LICENSE.txt for details.
|
|
|
|
|
|
|
|
irc.msgs = irc.lib.msgs
|
|
|
|
|
2019-09-24 02:18:24 +02:00
|
|
|
function irc.logChat(message)
|
|
|
|
minetest.log("action", "IRC CHAT: "..message)
|
2015-09-17 20:51:25 +02:00
|
|
|
end
|
|
|
|
|
2019-09-24 02:18:24 +02:00
|
|
|
function irc.sendLocal(message)
|
|
|
|
minetest.chat_send_all(minetest.colorize(irc.config.chat_color, message))
|
|
|
|
irc.logChat(message)
|
2015-09-17 20:51:25 +02:00
|
|
|
end
|
|
|
|
|
2019-09-24 02:18:24 +02:00
|
|
|
function irc.playerMessage(name, message)
|
|
|
|
return ("<%s> %s"):format(name, message)
|
|
|
|
end
|