mirror of
https://github.com/MinetestForFun/irc_modpack.git
synced 2024-11-18 15:40:24 +01:00
c5720217d7
'master' branch from @minetest-mods.
18 lines
432 B
Lua
18 lines
432 B
Lua
-- This file is licensed under the terms of the BSD 2-clause license.
|
|
-- See LICENSE.txt for details.
|
|
|
|
irc.msgs = irc.lib.msgs
|
|
|
|
function irc.logChat(message)
|
|
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)
|
|
end
|
|
|
|
function irc.playerMessage(name, message)
|
|
return ("<%s> %s"):format(name, message)
|
|
end
|