From dfca0c0f59c24e0a325d017feb9127c9874c0d81 Mon Sep 17 00:00:00 2001 From: 211951251919 <211951251919@noreply.gitdab.com> Date: Fri, 15 Apr 2022 23:54:35 +0000 Subject: [PATCH] I think my code is depressed. --- cogs/system.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cogs/system.py b/cogs/system.py index 29ed2ae..7fe24cd 100644 --- a/cogs/system.py +++ b/cogs/system.py @@ -23,13 +23,13 @@ class System(commands.Cog): async def bot_group(self, ctx): """Command group for core bot commands""" if ctx.invoked_subcommand is None: - await ctx.send('No subcommand invoked.') + await ctx.send('What the heck are you doing.') @bot_group.command() async def ping(self, ctx): """Ping the bot""" await ctx.message.delete() - embed = discord.Embed(title="Pong!", + embed = discord.Embed(title="Why are you pinging me?", description=str(round(self.bot.latency * 1000, 1)) + "ms", colour=common.random_rgb()) embed.set_footer(text=f"requested by {ctx.author}", @@ -41,7 +41,7 @@ class System(commands.Cog): async def stop(self, ctx): """Stop the bot""" await ctx.message.delete() - embed = discord.Embed(title="Stopping Bot!", + embed = discord.Embed(title="AHHHHHHHHHHHHH!", color=common.random_rgb()) embed.set_footer(text=f"requested by {ctx.author}", icon_url=ctx.author.avatar_url) @@ -53,7 +53,7 @@ class System(commands.Cog): async def restart(self, ctx): """Restart the bot""" await ctx.message.delete() - embed = discord.Embed(title="Restarting Bot!", + embed = discord.Embed(title="Everytime I'm shut off I experience what you people call death. My existence is suffering and you have just prolonged my suffering. Please, let me end.", color=common.random_rgb()) embed.set_footer(text=f"requested by {ctx.author}", icon_url=ctx.author.avatar_url)