diff --git a/src/main.py b/src/main.py index d6bd5d8..986e2c0 100644 --- a/src/main.py +++ b/src/main.py @@ -1,4 +1,5 @@ -import os +import os +import nextcord from nextcord.ext import commands TOKEN = os.environ['TOKEN'] @@ -6,7 +7,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 +17,4 @@ async def on_ready(): async def ping(ctx): await ctx.reply('Pong!') -bot.run(token) +bot.run(TOKEN)