1
0
mirror of https://github.com/MinetestForFun/irc_modpack.git synced 2024-09-28 22:30:23 +02:00
irc_modpack/irc/messages.lua
2015-09-17 20:55:27 +02:00

14 lines
287 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:sendLocal(message)
minetest.chat_send_all(message)
end
function irc:playerMessage(name, message)
return ("<%s> %s"):format(name, message)
end