From d67f1464fb268b03dfff48a883aea1489709948f Mon Sep 17 00:00:00 2001 From: Quinten Date: Tue, 30 Jan 2024 17:50:35 +0100 Subject: [PATCH] add ServerDescription --- main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.go b/main.go index 72d06fc..4049810 100644 --- a/main.go +++ b/main.go @@ -14,6 +14,7 @@ func main() { envVars := map[string]string{ "ServerPlayerMaxNum": os.Getenv("MAX_PLAYERS"), "ServerName": os.Getenv("SERVER_NAME"), + "ServerDescription": os.Getenv("SERVER_DESCRIPTION"), "ServerPassword": os.Getenv("SERVER_PASSWORD"), "AdminPassword": os.Getenv("ADMIN_PASSWORD"), "PublicIP": os.Getenv("PUBLIC_IP"), @@ -29,6 +30,7 @@ func main() { "ServerName": true, "ServerPassword": true, "AdminPassword": true, + "ServerDescription": true, // Add other keys as needed }