From dab7343ca6638b4a98f7e9e0aeba93ad05a3fa12 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Wed, 28 Feb 2024 13:44:13 -0500 Subject: [PATCH] fix(pterodactyl): use running, not started --- pterodactyl/pterodactyl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index 7f298ce..484eef5 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -77,7 +77,7 @@ class Pterodactyl(commands.Cog): self.logger.debug("Authentication successful") if json.loads(message)['event'] == 'console output' and await self.config.console_channel() is not None: - if current_status == 'started' or current_status == 'offline' or current_status == '': + if current_status == 'running' or current_status == 'offline' or current_status == '': channel = self.bot.get_channel(await self.config.console_channel()) if channel is not None: content = self.remove_ansi_escape_codes(json.loads(message)['args'][0][:1900])