diff --git a/galaxy/galaxy.py b/galaxy/galaxy.py index 5793a80..de7d480 100644 --- a/galaxy/galaxy.py +++ b/galaxy/galaxy.py @@ -72,10 +72,10 @@ class Galaxy(commands.Cog): autoreact_target = await self.config.guild(ctx.guild).autoreact_target() if self.check_if_discord_unicode_emoji(emoji_id) is True: emoji = emoji_id - embed = discord.Embed(color=await self.bot.get_embed_color(None), description=f"Autoreact is currently set to target <@{autoreact_target}> ({autoreact_target}).\Autoreact's emoji is currently set to {emoji}.") + embed = discord.Embed(color=await self.bot.get_embed_color(None), description=f"Autoreact is currently set to target <@{autoreact_target}> ({autoreact_target}).\nAutoreact's emoji is currently set to {emoji}.") else: emoji = self.bot.get_emoji(emoji_id) - embed = discord.Embed(color=await self.bot.get_embed_color(None), description=f"Autoreact is currently set to target <@{autoreact_target}> ({autoreact_target}).\Autoreact's emoji is currently set to {emoji} ({await self.config.guild(ctx.guild).autoreact_emoji()}).") + embed = discord.Embed(color=await self.bot.get_embed_color(None), description=f"Autoreact is currently set to target <@{autoreact_target}> ({autoreact_target}).\nAutoreact's emoji is currently set to {emoji} ({await self.config.guild(ctx.guild).autoreact_emoji()}).") await ctx.send(embed=embed) autoreact = app_commands.Group(name='autoreact', guild_only=True, description="This group handles the autoreact functionality.")