From bced9506c3a8d55885398fd2dc7fc3dac73c7063 Mon Sep 17 00:00:00 2001 From: James Lu Date: Mon, 11 Jul 2016 23:29:44 -0700 Subject: [PATCH] ts6: add RSFNC to supported caps --- protocols/ts6.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/protocols/ts6.py b/protocols/ts6.py index e748477..8d475c8 100644 --- a/protocols/ts6.py +++ b/protocols/ts6.py @@ -330,7 +330,9 @@ class TS6Protocol(TS6BaseProtocol): # TB: topic burst command; we send this in topicBurst # EUID: extended UID command, which includes real hostname + account data info, # and allows sending CHGHOST without ENCAP. - f('CAPAB :QS ENCAP EX CHW IE KNOCK SAVE SERVICES TB EUID') + # RSFNC: states that we support RSFNC (forced nick changed attempts). XXX: With atheme services, + # does this actually do anything? + f('CAPAB :QS ENCAP EX CHW IE KNOCK SAVE SERVICES TB EUID RSFNC') f('SERVER %s 0 :%s' % (self.irc.serverdata["hostname"], self.irc.serverdata.get('serverdesc') or self.irc.botdata['serverdesc']))