From fa61f8402413da4d7d43479e123f585f00892925 Mon Sep 17 00:00:00 2001 From: Joe Banks Date: Sun, 18 Jul 2021 13:13:50 +0100 Subject: feat: case insensitive commands --- arthur/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arthur/bot.py') 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) -- cgit v1.2.3