From 3a06814f18ea6846d86787147d5d38246f25fc8f Mon Sep 17 00:00:00 2001 From: ShadowNinja Date: Sat, 1 Feb 2014 17:58:51 -0500 Subject: [PATCH] Change formating of remote server join/leave messages --- src/hooks.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hooks.lua b/src/hooks.lua index baa636e..800436d 100644 --- a/src/hooks.lua +++ b/src/hooks.lua @@ -115,10 +115,10 @@ function mt_irc.hooks.channelChat(user, channel, message) mt_irc:sendLocal(("<%s@%s> %s") :format(chatnick, user.nick, chatmessage)) elseif foundjoin then - mt_irc:sendLocal(("*** %s@%s joined the game") + mt_irc:sendLocal(("*** %s joined %s") :format(joinnick, user.nick)) elseif foundleave then - mt_irc:sendLocal(("*** %s@%s left the game") + mt_irc:sendLocal(("*** %s left %s") :format(leavenick, user.nick)) elseif foundaction then mt_irc:sendLocal(("* %s@%s %s")