From 71e2f7455e9d703694bb8e8b4eb3888691be3eca Mon Sep 17 00:00:00 2001 From: ElBe <90863907+ElBe-Plaq@users.noreply.github.com> Date: Fri, 14 Oct 2022 21:36:20 +0200 Subject: [PATCH] Update commands.py --- Bot/commands.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Bot/commands.py b/Bot/commands.py index ceb8271..10f0055 100644 --- a/Bot/commands.py +++ b/Bot/commands.py @@ -3,7 +3,7 @@ Command creator for the discord.py Bot. © by ElBe. -Version: 0.1.4 +Version: 0.1.5 NOTE: Only execute once. ''' @@ -11,6 +11,14 @@ NOTE: Only execute once. #Imports import command_creator +#Stop command +json = { + 'name': 'stop', + 'type': 1, + 'description': 'Stops the bot.' +} +command_creator.create_command(json) + #Help command json = { 'name': 'help',