From 37ee8b39885e0edcf658ba0c55bbaad93eeb45f5 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Fri, 10 Jul 2020 05:56:37 +0100 Subject: [PATCH] Getting rid of weird unnatural spaces between the text in the embeds --- cogs/help/modmail.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/cogs/help/modmail.py b/cogs/help/modmail.py index 4c188591..cca008d7 100644 --- a/cogs/help/modmail.py +++ b/cogs/help/modmail.py @@ -70,8 +70,8 @@ def SendInstructions(author): SendModMailEmbed.set_thumbnail(url=author.avatar_url) SendModMailEmbed.set_footer(text=f"Sent by {author}") - fields = [(blank_space, - "**Make sure that the message is above 50 characters! Include as much detail as possible :P**", + fields = [("**Make sure that the message is above 50 characters!**", + "**Include as much detail as possible :P**", False)] for name, value, inline in fields: @@ -110,8 +110,7 @@ def MessageSentConfirmation(author): ConfirmationEmbed.set_thumbnail(url=author.avatar_url) ConfirmationEmbed.set_footer(text=f"Sent by {author}") - fields = [(blank_space, - "Thank you for your input! The staff team appreciate it very much!" + fields = [("Thank you for your input! The staff team appreciate it very much!", f"\n As mentioned previously, please don't be hesistant to DM {hammyMention} for anything! :P", False)] @@ -212,8 +211,8 @@ def Abort(author): AbortEmbed.set_footer(text=f"Sent by {author}") fields = [ - (blank_space, "**If you change your mind, you can do `~mm` or `~modmail` at anytime!**", False), - (blank_space, f"If you want to speak to me personally, you can DM {hammyMention} anytime!", True)] + ("**If you change your mind, you can do `~mm` or `~modmail` at anytime!**", + f"If you want to speak to me personally, you can DM {hammyMention} anytime!", False)] for name, value, inline in fields: AbortEmbed.add_field(name=name, value=value, inline=inline)