From ad393dde4b3aae1d4555fe34584e9162cc0c3c93 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Tue, 8 Aug 2023 12:21:47 -0400 Subject: [PATCH] misc: removed unneeded verbosity from a string --- galaxy/galaxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galaxy/galaxy.py b/galaxy/galaxy.py index a21d804..d1c84c8 100644 --- a/galaxy/galaxy.py +++ b/galaxy/galaxy.py @@ -139,7 +139,7 @@ class Galaxy(commands.Cog): emoji_obj = emoji_to_find break else: - await interaction.response.send_message(content=f"You're trying to set the coco emoji to an emoji I don't have access to!\n{emoji_id}", ephemeral=True) + await interaction.response.send_message(content=f"You're trying to set the coco emoji to an emoji I don't have access to!", ephemeral=True) return await self.config.guild(interaction.guild).cocoemoji.set(emoji_obj.id) embed=discord.Embed(color=await self.bot.get_embed_color(None), description=f"Coco's emoji has been set to {emoji_obj} ({emoji_obj.id}).")