testing some changes to coco

This commit is contained in:
Seaswimmer 2023-03-02 00:02:11 -05:00
parent 07cf4a6122
commit f563820b73

View file

@ -28,10 +28,13 @@ class Galaxy(commands.Cog):
else:
return
@commands.group(autohelp=False)
@commands.group(autohelp=True)
@commands.guild_only()
async def coco(self, ctx):
async def coco(self):
"""Checks who Coco is currently set to."""
@coco.command(name="get")
async def coco_get(self, ctx):
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).")
ctx.send(embed=embed)