diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index 4fc6792ea..c1cc0a3ea 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -2453,6 +2453,10 @@ def cooldown( .. versionchanged:: 1.7 Callables are now supported for custom bucket types. + + .. versionchanged:: 2.0 + When passing a callable, it now needs to accept :class:`.Context` + rather than :class:`~discord.Message` as its only argument. """ def decorator(func: Union[Command, CoroFunc]) -> Union[Command, CoroFunc]: diff --git a/docs/migrating.rst b/docs/migrating.rst index 9e0175af9..52fe217d9 100644 --- a/docs/migrating.rst +++ b/docs/migrating.rst @@ -153,7 +153,6 @@ The following have been changed to :func:`runtime-checkable