Delete unused commands

This commit is contained in:
Zeva Rose 2022-03-30 19:25:24 -06:00
parent 27b286dab5
commit 58c093bfa1

View file

@ -27,7 +27,9 @@ logger.addHandler(file_handler)
intents = Intents.DEFAULT | Intents.MESSAGES | Intents.GUILD_MEMBERS | Intents.GUILD_MESSAGES
restart_ctx = None
jarvis = Jarvis(intents=intents, sync_interactions=jconfig.sync)
jarvis = Jarvis(
intents=intents, sync_interactions=jconfig.sync, delete_unused_application_cmds=True
)
async def run() -> None: