mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-02-03 08:04:07 +01:00
Do not call noReply() on raw IRC objects.
This commit is contained in:
parent
76c73a57b9
commit
965dcc293d
@ -1016,7 +1016,10 @@ class NestedCommandsIrcProxy(ReplyIrcProxy):
|
||||
msg = self.msg
|
||||
super(NestedCommandsIrcProxy, self).noReply(msg=msg)
|
||||
if self.finalEvaled:
|
||||
if isinstance(self.irc, NestedCommandsIrcProxy):
|
||||
self.irc.noReply(msg=msg)
|
||||
else:
|
||||
msg.tag('ignored', True)
|
||||
else:
|
||||
self.args.pop(self.counter)
|
||||
msg.tag('ignored', False)
|
||||
|
Loading…
Reference in New Issue
Block a user