fix(pterodactyl): remove " characters from tellraw message strings
All checks were successful
Actions / Lint Code (Ruff & Pylint) (push) Successful in 23s
Actions / Build Documentation (MkDocs) (push) Successful in 25s

This commit is contained in:
Seaswimmer 2024-03-02 16:41:36 -05:00
parent 6e2776b63a
commit a52a991ae6
Signed by: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -87,7 +87,7 @@ class Pterodactyl(commands.Cog):
"C": str(message.author.color),
"D": message.author.discriminator,
"I": str(message.author.id),
"M": message.content,
"M": message.content.replace('"',''),
"N": message.author.display_name,
"U": message.author.name,
}