diff options
Diffstat (limited to 'discord/ext/commands/bot.py')
| -rw-r--r-- | discord/ext/commands/bot.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/discord/ext/commands/bot.py b/discord/ext/commands/bot.py index 67853715..9ef4143c 100644 --- a/discord/ext/commands/bot.py +++ b/discord/ext/commands/bot.py @@ -947,6 +947,10 @@ class Bot(BotBase, discord.Client): multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. + case_insensitive: :class:`bool` + Whether the commands should be case insensitive. Defaults to ``False``. This + attribute does not carry over to groups. You must set it to every group if + you require group commands to be case insensitive as well. description : :class:`str` The content prefixed into the default help message. self_bot : :class:`bool` |