Remove on_command_error
and move on_ready
This commit is contained in:
parent
ed25329568
commit
81eb7542f3
15
code/bot.py
15
code/bot.py
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user