From 52372b26a29410a0ca88afffbc62b4596c0f5b73 Mon Sep 17 00:00:00 2001 From: JelNiSlaw Date: Fri, 2 Dec 2022 22:15:30 +0100 Subject: [PATCH] Set prefix to ! --- wulkabot/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wulkabot/bot.py b/wulkabot/bot.py index 60c2f6b..301a8a3 100644 --- a/wulkabot/bot.py +++ b/wulkabot/bot.py @@ -11,7 +11,7 @@ from . import cogs class Wulkabot(commands.Bot): def __init__(self) -> None: super().__init__( - command_prefix=commands.when_mentioned_or("."), + command_prefix=commands.when_mentioned_or("!"), help_command=commands.MinimalHelpCommand(), intents=discord.Intents(guilds=True, messages=True, message_content=True), allowed_mentions=discord.AllowedMentions.none(),