From aafd734e3aa717d092ff75748e921f810eecec7a Mon Sep 17 00:00:00 2001 From: James Lu Date: Sun, 8 Jan 2017 20:43:08 -0800 Subject: [PATCH] ts6: remove leftover mode filtering in mode() --- protocols/ts6.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/ts6.py b/protocols/ts6.py index 3249576..3bc4a32 100644 --- a/protocols/ts6.py +++ b/protocols/ts6.py @@ -186,7 +186,7 @@ class TS6Protocol(TS6BaseProtocol): while modes[:10]: # Seriously, though. If you send more than 10 mode parameters in # a line, charybdis will silently REJECT the entire command! - joinedmodes = self.irc.joinModes([m for m in modes[:10] if m[0] not in self.irc.cmodes['*A']]) + joinedmodes = self.irc.joinModes([m for m in modes[:10]]) modes = modes[10:] self._send(numeric, 'TMODE %s %s %s' % (ts, target, joinedmodes)) else: