Disable builtin help() from discord.bot

This commit is contained in:
2021-07-12 13:36:29 +02:00
parent 67dc1765a3
commit 0395cd908d

View File

@@ -15,7 +15,7 @@ logger.addHandler(handler)
# setup discord.py bot # setup discord.py bot
intents = discord.Intents().all() intents = discord.Intents().all()
bot = commands.Bot(command_prefix='!', intents=intents) bot = commands.Bot(command_prefix='!', intents=intents, help_command=None)
e = discord.Embed() e = discord.Embed()
@bot.event @bot.event