From af81e87aed0e603826fc78f0e6e45b87273ff9ad Mon Sep 17 00:00:00 2001 From: igna <88955484+nekospara@users.noreply.github.com> Date: Sun, 29 Aug 2021 13:54:46 -0400 Subject: [PATCH] smoll fix --- src/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.py b/src/main.py index d6bd5d8..aad5d24 100644 --- a/src/main.py +++ b/src/main.py @@ -6,7 +6,7 @@ PREFIX = os.environ['PREFIX'] intents = nextcord.Intents.default() intents.members = True -bot = commands.Bot(command_prefix='$', intents=intents) +bot = commands.Bot(command_prefix=PREFIX, intents=intents) @bot.event() async def on_ready(): @@ -16,4 +16,4 @@ async def on_ready(): async def ping(ctx): await ctx.reply('Pong!') -bot.run(token) +bot.run(TOKEN)