Misc: Notify the caller when @tell succeeded. Closes GH-97.

Signed-off-by: James McCoy <jamessan@users.sourceforge.net>
This commit is contained in:
Valentin Lorentz 2011-08-07 11:30:51 +02:00 committed by James McCoy
parent 9b8397193b
commit 484d7e6fac

View File

@ -406,6 +406,7 @@ class Misc(callbacks.Plugin):
irc.action = False irc.action = False
text = '* %s %s' % (irc.nick, text) text = '* %s %s' % (irc.nick, text)
s = '%s wants me to tell you: %s' % (msg.nick, text) s = '%s wants me to tell you: %s' % (msg.nick, text)
irc.replySuccess()
irc.reply(s, to=target, private=True) irc.reply(s, to=target, private=True)
tell = wrap(tell, ['something', 'text']) tell = wrap(tell, ['something', 'text'])