Skip to content

Commit 4b55c1e

Browse files
authored
Update main.py
removing text command help
1 parent b14c511 commit 4b55c1e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
# setting up discord bot client
88
bot = commands.Bot(command_prefix=f'{settings["prefix"]}', intents=disnake.Intents().all())
9+
bot.remove_command("help")
910

1011
# logging about starting bot
1112
@bot.event
@@ -20,4 +21,4 @@ async def on_ready():
2021
list_cogs.append(filename[:-3])
2122

2223
# run bot
23-
bot.run(settings['token'])
24+
bot.run(settings['token'])

0 commit comments

Comments
 (0)