Browse Source
[commands] Fix Command.cog being reset after update
pull/7494/head
Josh
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
discord/ext/commands/core.py
|
|
@ -449,7 +449,9 @@ class Command(_BaseCommand, Generic[CogT, P, T]): |
|
|
|
of parameters in that they are passed to the :class:`Command` or |
|
|
|
subclass constructors, sans the name and callback. |
|
|
|
""" |
|
|
|
cog = self.cog |
|
|
|
self.__init__(self.callback, **dict(self.__original_kwargs__, **kwargs)) |
|
|
|
self.cog = cog |
|
|
|
|
|
|
|
async def __call__(self, context: Context, *args: P.args, **kwargs: P.kwargs) -> T: |
|
|
|
"""|coro| |
|
|
|