From d1ae613fdc478b4664f80037d428578ea5111419 Mon Sep 17 00:00:00 2001 From: Steven Wesner Date: Thu, 23 Jan 2025 19:18:19 -0500 Subject: [PATCH] Update status.py Fix for Satisfactory's Status class. --- opengsq/responses/satisfactory/status.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/opengsq/responses/satisfactory/status.py b/opengsq/responses/satisfactory/status.py index 9372c9e..45163af 100644 --- a/opengsq/responses/satisfactory/status.py +++ b/opengsq/responses/satisfactory/status.py @@ -10,8 +10,11 @@ class Status: state: int """The state.""" - version: int - """The version.""" + num_players: int + """The number of players currently connected to the server.""" - beacon_port: int - """The beacon port.""" + max_players: int + """The maximum number of players that can connect to the server.""" + + name: str + """The name of the server."""