fix(pterodactyl): replace newlines with whitespace to prevent formatting errors
This commit is contained in:
parent
50d1d7900b
commit
43464db6a7
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ class Pterodactyl(commands.Cog):
|
|||
"C": str(message.author.color),
|
||||
"D": message.author.discriminator,
|
||||
"I": str(message.author.id),
|
||||
"M": message.content.replace('"',''),
|
||||
"M": message.content.replace('"','').replace("\n", " "),
|
||||
"N": message.author.display_name,
|
||||
"U": message.author.name,
|
||||
"V": await config.invite() or "use [p]pterodactyl config invite to change me",
|
||||
|
|
Loading…
Reference in a new issue