[commands] Allow passing reference time to update_rate_limit
This commit is contained in:
parent
9b089c9a7b
commit
ec7a701ceb
@ -61,8 +61,8 @@ class Cooldown:
|
||||
tokens = self.rate
|
||||
return tokens
|
||||
|
||||
def update_rate_limit(self):
|
||||
current = time.time()
|
||||
def update_rate_limit(self, current=None):
|
||||
current = current or time.time()
|
||||
self._last = current
|
||||
|
||||
self._tokens = self.get_tokens(current)
|
||||
|
Loading…
x
Reference in New Issue
Block a user