Getting rid of weird unnatural spaces between the text in the embeds

pull/4/head
sgoudham 4 years ago
parent 049a51eafe
commit 37ee8b3988

@ -70,8 +70,8 @@ def SendInstructions(author):
SendModMailEmbed.set_thumbnail(url=author.avatar_url) SendModMailEmbed.set_thumbnail(url=author.avatar_url)
SendModMailEmbed.set_footer(text=f"Sent by {author}") SendModMailEmbed.set_footer(text=f"Sent by {author}")
fields = [(blank_space, fields = [("**Make sure that the message is above 50 characters!**",
"**Make sure that the message is above 50 characters! Include as much detail as possible :P**", "**Include as much detail as possible :P**",
False)] False)]
for name, value, inline in fields: for name, value, inline in fields:
@ -110,8 +110,7 @@ def MessageSentConfirmation(author):
ConfirmationEmbed.set_thumbnail(url=author.avatar_url) ConfirmationEmbed.set_thumbnail(url=author.avatar_url)
ConfirmationEmbed.set_footer(text=f"Sent by {author}") ConfirmationEmbed.set_footer(text=f"Sent by {author}")
fields = [(blank_space, fields = [("Thank you for your input! The staff team appreciate it very much!",
"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", f"\n As mentioned previously, please don't be hesistant to DM {hammyMention} for anything! :P",
False)] False)]
@ -212,8 +211,8 @@ def Abort(author):
AbortEmbed.set_footer(text=f"Sent by {author}") AbortEmbed.set_footer(text=f"Sent by {author}")
fields = [ fields = [
(blank_space, "**If you change your mind, you can do `~mm` or `~modmail` at anytime!**", False), ("**If you change your mind, you can do `~mm` or `~modmail` at anytime!**",
(blank_space, f"If you want to speak to me personally, you can DM {hammyMention} anytime!", True)] f"If you want to speak to me personally, you can DM {hammyMention} anytime!", False)]
for name, value, inline in fields: for name, value, inline in fields:
AbortEmbed.add_field(name=name, value=value, inline=inline) AbortEmbed.add_field(name=name, value=value, inline=inline)

Loading…
Cancel
Save