fix clear commands finally

This commit is contained in:
Aaron Riedel 2022-04-16 05:12:44 +02:00
parent bac7a94a99
commit f39e13eb58
Signed by: aaron
GPG key ID: 643004654D40D577

View file

@ -22,7 +22,7 @@ bot = commands.Bot(intents=intents, command_prefix=prefix)
@bot.event
async def on_connect():
print("Bot ready on Version %s..." % discord.__version__)
await bot.sync_commands(commands=[], guild_ids=[261575556708040705])
await bot.sync_commands(commands=[], check_guilds=[261575556708040705])
print("Press Ctl+c to exit now")
bot.run(token)