diff --git a/discord/ext/commands/cooldowns.py b/discord/ext/commands/cooldowns.py index 9687d5f6c..02d5c64de 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)