Remove on_command_error and move on_ready

This commit is contained in:
Parker M. 2024-07-12 03:42:13 -05:00
parent ed25329568
commit 81eb7542f3
No known key found for this signature in database
GPG Key ID: 95CD2E0C7E329F2A

View File

@ -37,6 +37,10 @@ class MyBot(commands.Bot):
bot.openai = openai.OpenAI(api_key=config.OPENAI_API_KEY)
async def on_ready(self):
config.LOG.info(f"{bot.user} has connected to Discord.")
config.LOG.info("Startup complete. Sync slash commands by DMing the bot ***sync")
bot = MyBot()
bot.remove_command("help")
@ -44,17 +48,6 @@ bot.temp_command_count = {} # command_name: count
bot.autoplay = [] # guild_id, guild_id, etc.
@bot.event
async def on_ready():
config.LOG.info(f"{bot.user} has connected to Discord.")
config.LOG.info("Startup complete. Sync slash commands by DMing the bot ***sync")
@bot.event
async def on_command_error(ctx, error):
return
@tasks.loop(minutes=45)
async def get_access_token():
auth_url = "https://accounts.spotify.com/api/token"