fix(pterodactyl): remove "
characters from tellraw message strings
This commit is contained in:
parent
6e2776b63a
commit
a52a991ae6
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ class Pterodactyl(commands.Cog):
|
||||||
"C": str(message.author.color),
|
"C": str(message.author.color),
|
||||||
"D": message.author.discriminator,
|
"D": message.author.discriminator,
|
||||||
"I": str(message.author.id),
|
"I": str(message.author.id),
|
||||||
"M": message.content,
|
"M": message.content.replace('"',''),
|
||||||
"N": message.author.display_name,
|
"N": message.author.display_name,
|
||||||
"U": message.author.name,
|
"U": message.author.name,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue