From ff26cbc0b17276d3861f605e553f2a63ecbdf721 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Thu, 17 Mar 2022 23:13:07 -0400 Subject: [PATCH] Removed `ping` in favor of 'ModuleProbe' module --- bot.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/bot.py b/bot.py index 7c88e69..4339b23 100644 --- a/bot.py +++ b/bot.py @@ -63,12 +63,6 @@ class Bot(commands.Bot): # Add discord commands to the bot def add_commands(self): - # Test command to see if the bot is on (help command can also be used) - @self.command(help="Use this to test if the bot is alive", brief="Sends a 'pong' in response") - async def ping(ctx): - if ctx.author.id != self.user.id: - await ctx.send('pong') - # Command to display what channel the bot is in @self.command(help="Use this command to display what channel the bot is in", brief="Where ya at?")