summaryrefslogtreecommitdiff
path: root/irc.py
diff options
context:
space:
mode:
Diffstat (limited to 'irc.py')
-rw-r--r--irc.py2
1 files changed, 1 insertions, 1 deletions
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))