From 5f385d658434a67eb9ef7b4ed2f0aa4e42404a8b Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 2 Mar 2023 13:46:23 -0500 Subject: [PATCH] fixed coco command --- galaxy/galaxy.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/galaxy/galaxy.py b/galaxy/galaxy.py index a484aa3..327a7f3 100644 --- a/galaxy/galaxy.py +++ b/galaxy/galaxy.py @@ -28,8 +28,9 @@ class Galaxy(commands.Cog): @commands.guild_only() async def coco(self, ctx): """Checks who Coco is currently set to.""" + emoji = self.bot.get_emoji(await self.config.guild(ctx.guild).cocoemoji()) 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}).\nCoco's emoji is currently set to ") + embed=discord.Embed(color=await self.bot.get_embed_color(None), description=f"Coco is currently set to <@{cocotarget}> ({cocotarget}).\nCoco's emoji is currently set to {emoji} ({await self.config.guild(ctx.guild).cocoemoji()}).") await ctx.send(embed=embed) @coco.command(name="emoji")