From ccf2d4c0a7dd0ea095f668f7c912ca17ab189a2e Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 2 Mar 2023 13:34:08 -0500 Subject: [PATCH] made coco get the same as coco --- galaxy/galaxy.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/galaxy/galaxy.py b/galaxy/galaxy.py index 8ee553c..8b87604 100644 --- a/galaxy/galaxy.py +++ b/galaxy/galaxy.py @@ -23,14 +23,10 @@ class Galaxy(commands.Cog): return await message.add_reaction(emoji) - @commands.group(autohelp=True) + @commands.group(autohelp=False) @commands.guild_only() async def coco(self, ctx): """Checks who Coco is currently set to.""" - - @coco.command(name="get") - async def coco_get(self, ctx): - """Checks who Coco is currently set to.""" cocotarget = await self.config.guild(ctx.guild).cocotarget() embed=discord.Embed(color=await self.bot.get_embed_color(None), description=f"Coco is currently set to <@{cocotarget}> ({cocotarget}).") await ctx.send(embed=embed)