countdown-bot

A Discord bot that runs countdown games and generates analytics
git clone https://git.ashermorgan.net/countdown-bot/
Log | Files | Refs | README

commit ebd075474c0cf38f7fb7796fe7350227b9b27919
parent fe15e1a3b127c1a0c733f90a2b3023c55da653be
Author: AsherMorgan <59518073+AsherMorgan@users.noreply.github.com>
Date:   Fri, 12 Feb 2021 18:12:13 -0800

Fix command prefix

Diffstat:
Mbot.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bot.py b/bot.py @@ -414,7 +414,7 @@ with open(os.path.join(os.path.dirname(__file__), "data.json"), "a+") as f: # Create Discord bot -bot = commands.Bot(command_prefix = ["dev."], case_insensitive=True) +bot = commands.Bot(command_prefix = ["c."], case_insensitive=True) bot.remove_command("help")