aboutsummaryrefslogtreecommitdiffstats
path: root/arthur/bot.py
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2021-07-18 13:13:50 +0100
committerGravatar Joe Banks <[email protected]>2021-07-18 13:13:50 +0100
commitfa61f8402413da4d7d43479e123f585f00892925 (patch)
treea59df19b9f60b9ec059a45960ef8c396e03544a6 /arthur/bot.py
parentfeat: add error handler (diff)
feat: case insensitive commands
Diffstat (limited to 'arthur/bot.py')
-rw-r--r--arthur/bot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/arthur/bot.py b/arthur/bot.py
index 4bb14b8..a14812a 100644
--- a/arthur/bot.py
+++ b/arthur/bot.py
@@ -16,7 +16,7 @@ class KingArthur(Bot):
"""Base bot class for King Arthur."""
def __init__(self, *args: list[Any], **kwargs: dict[str, Any]) -> None:
- config = {"command_prefix": CONFIG.prefix}
+ config = {"command_prefix": CONFIG.prefix, "case_insensitive": True}
kwargs.update(config)