diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index 5a586b7..86fe5fa 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -82,6 +82,11 @@ class Pterodactyl(commands.Cog): if content.startswith('['): await channel.send(content=content) #TODO - Add pagification for long messages to prevent Discord API errors + + if json.loads(message)['event'] == 'status': + console = self.bot.get_channel(await self.config.console_channel()) + if console is not None: + await console.send(f"Server status changed! `{json.loads(message)['args'][0]}`") except websockets.exceptions.ConnectionClosed as e: self.logger.debug("WebSocket connection closed: %s", e) websocket_credentials = client.servers.get_websocket(server_id)