mirror of
https://github.com/progval/Limnoria.git
synced 2025-05-04 09:21:07 -05:00
Ctcp: Don't strip CTCP character in output. (bug added in previous commit)
This commit is contained in:
parent
6ec0af2da3
commit
c9e5486806
@ -77,7 +77,7 @@ class Ctcp(callbacks.PluginRegexp):
|
|||||||
|
|
||||||
def _reply(self, irc, msg, s):
|
def _reply(self, irc, msg, s):
|
||||||
s = '\x01%s\x01' % s
|
s = '\x01%s\x01' % s
|
||||||
irc.reply(s, notice=True, private=True, to=msg.nick)
|
irc.reply(s, notice=True, private=True, to=msg.nick, stripCtcp=False)
|
||||||
|
|
||||||
def ctcpPing(self, irc, msg, match):
|
def ctcpPing(self, irc, msg, match):
|
||||||
"^\x01PING(?: (.+))?\x01$"
|
"^\x01PING(?: (.+))?\x01$"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user