Browse Source

[commands] Allow passing reference time to update_rate_limit

pull/2095/head
Rapptz 6 years ago
parent
commit
ec7a701ceb
  1. 4
      discord/ext/commands/cooldowns.py

4
discord/ext/commands/cooldowns.py

@ -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…
Cancel
Save