Move text command error handler
This commit is contained in:
parent
0a6ba08a65
commit
b31573a1ef
@ -4,6 +4,7 @@ import os
|
||||
import requests
|
||||
|
||||
import config
|
||||
from tree import Tree
|
||||
|
||||
|
||||
class MyBot(commands.Bot):
|
||||
@ -12,6 +13,7 @@ class MyBot(commands.Bot):
|
||||
command_prefix="***",
|
||||
activity=discord.Game(name="music!"),
|
||||
intents=discord.Intents.default(),
|
||||
tree_cls=Tree
|
||||
)
|
||||
|
||||
async def setup_hook(self):
|
||||
@ -43,6 +45,11 @@ async def on_ready():
|
||||
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