kingdoms_game/mods/irc/messages.lua
Elkien3 7634a5db9b Update irc mod
got the latest from kaeza's repo
2017-10-04 17:54:24 -05:00

18 lines
390 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(message)
irc.logChat(message)
end
function irc.playerMessage(name, message)
return ("<%s> %s"):format(name, message)
end