Open romandeh opened 1 year ago
Same problem here! I couldn't solve it yet discord.ext.commands.errors.CommandNotFound: Command "help" is not found
I had the same issue - you need to change how you load the cogs. change it to this in main.py:
@bot.event async def on_ready(): await bot.add_cog(music_cog(bot)) await bot.add_cog(help_cog(bot))
I started the bot, but none of the commands are recognized, throwing this messages in the console.