From b5ec97e617d71ca1e7703b8492285246971efbc3 Mon Sep 17 00:00:00 2001 From: shersonb Date: Mon, 24 Mar 2014 21:07:37 -0700 Subject: Fixing throttle interval for WHO and MODE requests. --- irc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'irc.py') diff --git a/irc.py b/irc.py index 2510a53..bb2a03f 100644 --- a/irc.py +++ b/irc.py @@ -2458,7 +2458,7 @@ class Connection(object): if len(self.throttledata) == 0 or self.throttledata[-1] < T - 2: self.throttled = False else: - T = max(T, self.throttledata[-1] + 1) + T = max(T, self.throttledata[-1] + 0.125) self.throttledata.append(T) with self._sendline: self._outgoing.append((T, line, origin)) -- cgit v1.2.3