From a52a991ae68185af8a5a6961f3b31f97f519986c Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sat, 2 Mar 2024 16:41:36 -0500 Subject: [PATCH] fix(pterodactyl): remove `"` characters from tellraw message strings --- pterodactyl/pterodactyl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index 23ddab3..53908f8 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -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, }