From d78141d459a3b0760f4726482579439bd7fb34a3 Mon Sep 17 00:00:00 2001 From: Vin Date: Sun, 24 Mar 2013 23:02:22 +0100 Subject: [PATCH] Changed the flood protection time --- irclib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irclib.py b/irclib.py index cc9efdb..2fdab9a 100644 --- a/irclib.py +++ b/irclib.py @@ -208,7 +208,7 @@ def send_once(self): continue c.last_time = time.time() c.send_time += delta - if c.send_time >= 1.3: + if c.send_time >= 1.9: c.send_time = 0 c.sent_bytes = 0