From d93e51758143964732733139d8e212dbbc233bd2 Mon Sep 17 00:00:00 2001 From: Daniel Krastev Date: Wed, 5 Feb 2025 21:19:39 +0200 Subject: [PATCH] Change command prefix --- src/discordbot/discordbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/discordbot/discordbot.py b/src/discordbot/discordbot.py index f6d65de..1a651e1 100644 --- a/src/discordbot/discordbot.py +++ b/src/discordbot/discordbot.py @@ -23,7 +23,7 @@ intents.presences = True intents.message_content = True # Discord client -bot = Bot(command_prefix="!", intents=intents) +bot = Bot(command_prefix=".", intents=intents) # Scheduler scheduler = AsyncIOScheduler()