From fb177ff8ad6780d084c9e740a91d24abbc7048cd Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Fri, 1 Mar 2024 22:25:21 -0500 Subject: [PATCH] fix(pterodactyl): fixed broken placeholder replacement --- pterodactyl/pterodactyl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index e049474..b099c39 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -92,7 +92,7 @@ class Pterodactyl(commands.Cog): "U": message.author.name, } for key, value in placeholders.items(): - command = command.replace('$.' + key, value) + command = command.replace('.$' + key, value) return command @commands.Cog.listener()