[Solved] discord.py, using slash command and prefix at the same time
You need to write the command twice, one with @commands.command and a second with @cog_ext.cog_slash Maybe if the commands function is very long or you just do not want it twice you can spil it it into another funtion that you call with both commands async def cmd(author): # do your commands stuff here @commands.command(name=”cmd”) … Read more