mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-04 17:06:21 +00:00
[commands] Fix issue with decorator order with checks and cooldowns
Now they're just explicitly copied.
This commit is contained in:
@ -98,6 +98,11 @@ class CooldownMapping:
|
||||
self._cache = {}
|
||||
self._cooldown = original
|
||||
|
||||
def copy(self):
|
||||
ret = CooldownMapping(self._cooldown)
|
||||
ret._cache = self._cache.copy()
|
||||
return ret
|
||||
|
||||
@property
|
||||
def valid(self):
|
||||
return self._cooldown is not None
|
||||
|
Reference in New Issue
Block a user