aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/channel_op.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/channel_op.py b/modules/channel_op.py
index d8a987f1..4cef0f99 100644
--- a/modules/channel_op.py
+++ b/modules/channel_op.py
@@ -309,7 +309,9 @@ class Module(ModuleManager.BaseModule):
modes.append(("b", self._get_hostmask(channel, user)))
kick_reason = "User is banned from this channel"
- for chunk in self._chunk(modes, 4):
+ # break up in to chunks of (maximum) 3
+ # https://tools.ietf.org/html/rfc2812.html#section-3.2.3
+ for chunk in self._chunk(modes, 3):
chars, args = list(zip(*chunk))
channel.send_mode("+%s" % "".join(chars), list(args))
if not kick_reason == None: