Removed ping in favor of 'ModuleProbe' module

This commit is contained in:
Logan Cusano
2022-03-17 23:13:07 -04:00
parent 9456b91d09
commit ff26cbc0b1

6
bot.py
View File

@@ -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?")