diff options
Diffstat (limited to 'arthur/bot.py')
-rw-r--r-- | arthur/bot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arthur/bot.py b/arthur/bot.py index 9b6d56e..2bbb69c 100644 --- a/arthur/bot.py +++ b/arthur/bot.py @@ -17,7 +17,7 @@ class KingArthur(Bot): def __init__(self, *args: list[Any], **kwargs: dict[str, Any]) -> None: config = { - "command_prefix": commands.when_mentioned_or(CONFIG.prefix), + "command_prefix": commands.when_mentioned_or(*CONFIG.prefixes), "case_insensitive": True, } |