diff options
| -rw-r--r-- | discord/ext/commands/cooldowns.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/ext/commands/cooldowns.py b/discord/ext/commands/cooldowns.py index 9687d5f6..02d5c64d 100644 --- a/discord/ext/commands/cooldowns.py +++ b/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) |