mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-27 05:09:23 +01:00
Misc: Fix order of replies of @tell, in order to fix issue with nesting.
Using @ignore [tell foo bar] was telling 'The operation succeeded' to foo, and ignore 'bar'.
This commit is contained in:
parent
669a8a86e8
commit
90ad25668e
@ -490,8 +490,8 @@ class Misc(callbacks.Plugin):
|
||||
irc.action = False
|
||||
text = '* %s %s' % (irc.nick, text)
|
||||
s = _('%s wants me to tell you: %s') % (msg.nick, text)
|
||||
irc.reply(s, to=target, private=True)
|
||||
irc.replySuccess()
|
||||
irc.reply(s, to=target, private=True)
|
||||
tell = wrap(tell, ['something', 'text'])
|
||||
|
||||
@internationalizeDocstring
|
||||
|
@ -1,3 +1,3 @@
|
||||
"""stick the various versioning attributes in here, so we only have to change
|
||||
them once."""
|
||||
version = '0.83.4.1+limnoria (2011-09-11T20:13:20+0200)'
|
||||
version = '0.83.4.1+limnoria (2011-09-18T10:31:09+0200)'
|
||||
|
Loading…
Reference in New Issue
Block a user