euhake

Results 3 comments of euhake

Did you get any solution? I have the same problem, when I use bot.start my commands don't sync

this here worked for me ```py import asyncio, disnake from disnake.ext import commands EVLOOP = asyncio.new_event_loop() asyncio.set_event_loop(EVLOOP) bot = commands.Bot( command_prefix=commands.when_mentioned, intents=disnake.Intents.all(), ) @bot.slash_command(description='test') async def test(inter: disnake.ApplicationCommandInteraction) -> None:...