diff options
Diffstat (limited to 'docs/ext/commands/commands.rst')
| -rw-r--r-- | docs/ext/commands/commands.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/ext/commands/commands.rst b/docs/ext/commands/commands.rst index e6d37c89..caa848b3 100644 --- a/docs/ext/commands/commands.rst +++ b/docs/ext/commands/commands.rst @@ -392,6 +392,7 @@ A lot of discord models work out of the gate as a parameter: - :class:`Colour` - :class:`Emoji` - :class:`PartialEmoji` +- :class:`Thread` (since v2.0) Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify. @@ -438,6 +439,8 @@ converter is given below: +--------------------------+-------------------------------------------------+ | :class:`PartialEmoji` | :class:`~ext.commands.PartialEmojiConverter` | +--------------------------+-------------------------------------------------+ +| :class:`Thread` | :class:`~ext.commands.ThreadConverter` | ++--------------------------+-------------------------------------------------+ By providing the converter it allows us to use them as building blocks for another converter: |