# HG changeset patch # User Matthew Wild # Date 1274359553 -3600 # Node ID d7ce8ba2c462bcac099d7c1887d79fdc6d0b6170 # Parent 7bb53dcf93d413e96d5c5d43ed1199ecc94f0673 plugins.tell: Change responses (thanks Flo) diff -r 7bb53dcf93d4 -r d7ce8ba2c462 plugins/tell.lua --- a/plugins/tell.lua Fri May 14 14:23:03 2010 +0100 +++ b/plugins/tell.lua Thu May 20 13:45:53 2010 +0100 @@ -21,16 +21,16 @@ tellings[nick] = {}; end tellings[nick][#tellings[nick] + 1] = {from=command.sender.nick, msg=msg}; - return "Ok! Will tell " .. nick .. " what you have said!"; + return "Ok!"; else if nick == command.sender.nick then - return "Are you going crazy!? You are " .. nick .. "!"; + return "Tell yourself."; else - return "Aehm?! ... " .. nick .. " is currently online!"; + return "" .. nick .. " is currently online!"; end end else - return "Sorry, but this command only makes sense if you execute it in a groupchat."; + return "This command is only available in groupchats."; end end);