Browse Source

[commands] Remove window reassignment when tokens reach 0

pull/7167/head
Rapptz 4 years ago
parent
commit
d047cebc35
  1. 5
      discord/ext/commands/cooldowns.py

5
discord/ext/commands/cooldowns.py

@ -115,11 +115,6 @@ class Cooldown:
# we're not so decrement our tokens
self._tokens -= 1
# see if we got rate limited due to this token change, and if
# so update the window to point to our current time frame
if self._tokens == 0:
self._window = current
def reset(self):
self._tokens = self.rate
self._last = 0.0

Loading…
Cancel
Save