kingdoms_game/mods/irc/messages.lua

18 lines
390 B
Lua
Raw Normal View History

2017-09-18 08:50:31 -05:00
-- 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)
2017-09-18 08:50:31 -05:00
minetest.chat_send_all(message)
irc.logChat(message)
2017-09-18 08:50:31 -05:00
end
function irc.playerMessage(name, message)
2017-09-18 08:50:31 -05:00
return ("<%s> %s"):format(name, message)
end