summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'main.py')
-rw-r--r--main.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.py b/main.py
index 4c3e312..b84f91d 100644
--- a/main.py
+++ b/main.py
@@ -8,8 +8,8 @@ from discord.ext import commands
dotenv.load_dotenv()
TOKEN = os.getenv('TOKEN')
-intents = discord.Intents.all()
+bot = BigResultPlus()
+bot.initialize_commands()
+bot.run(TOKEN)
-client = BigResultPlus(intents=intents, command_prefix="!") # This represents our connection with Discord
-client.run(TOKEN) # This actually starts our bot