mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-17 23:52:46 +01:00
Removed rate limiting during testing.
This commit is contained in:
parent
670669fe68
commit
737f35c99d
@ -108,11 +108,11 @@ class RateLimiter:
|
|||||||
return None
|
return None
|
||||||
|
|
||||||
def put(self, msg):
|
def put(self, msg):
|
||||||
if not self.limit(msg):
|
if self.limit(msg) and not world.testing:
|
||||||
self.unlimited.append(msg)
|
|
||||||
else:
|
|
||||||
debug.printf('Limiting message from %s' % msg.prefix)
|
debug.printf('Limiting message from %s' % msg.prefix)
|
||||||
self.limited.append(msg)
|
self.limited.append(msg)
|
||||||
|
else:
|
||||||
|
self.unlimited.append(msg)
|
||||||
|
|
||||||
def limit(self, msg, penalize=True):
|
def limit(self, msg, penalize=True):
|
||||||
if msg.prefix and ircutils.isUserHostmask(msg.prefix):
|
if msg.prefix and ircutils.isUserHostmask(msg.prefix):
|
||||||
|
Loading…
Reference in New Issue
Block a user