1
0
mirror of https://github.com/minetest-mods/irc.git synced 2025-02-12 06:40:17 +01:00
irc/messages.lua
Tai Kedzierski 998635cbbc Add IRC chat to logs
Allows monitoring all chat through log watcher daemons, and see full chat excerpts
2016-10-05 17:36:45 +01:00

15 lines
326 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)
minetest.debug("IRC CHAT: "..message)
end
function irc:playerMessage(name, message)
return ("<%s> %s"):format(name, message)
end