From 366bafcd279372d2724bf796effda4b781e72240 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 29 Feb 2024 21:18:42 -0500 Subject: [PATCH] fix(pterodactyl): don't trim content --- pterodactyl/pterodactyl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index 473ebb8..a20b4d1 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -83,7 +83,7 @@ class Pterodactyl(commands.Cog): if json.loads(message)['event'] == 'console output' and await self.config.console_channel() is not None: if current_status == 'running' or current_status == 'offline' or current_status == '': - content = self.remove_ansi_escape_codes(json.loads(message)['args'][0][:1900]) + content = self.remove_ansi_escape_codes(json.loads(message)['args'][0]) channel = self.bot.get_channel(await self.config.console_channel()) if channel is not None: