From 1c77790a86998459748e515f1fc8ceed4eda89a7 Mon Sep 17 00:00:00 2001 From: maximilianovermeyer <69120862+maximilianovermeyer@users.noreply.github.com> Date: Tue, 1 Mar 2022 21:55:12 +0100 Subject: [PATCH] fix(insurgency) "Max Players" env variable typo (#1572) "Max Players" var was defined as MAXPLAYERS, but referred as MAX_PLAYERS. Changed the definition instead of the startup command to keep it consistent with other steam games. --- .../insurgency_sandstorm/egg-insurgency--sandstorm.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game_eggs/steamcmd_servers/insurgency_sandstorm/egg-insurgency--sandstorm.json b/game_eggs/steamcmd_servers/insurgency_sandstorm/egg-insurgency--sandstorm.json index 724c0989..562e9f4c 100644 --- a/game_eggs/steamcmd_servers/insurgency_sandstorm/egg-insurgency--sandstorm.json +++ b/game_eggs/steamcmd_servers/insurgency_sandstorm/egg-insurgency--sandstorm.json @@ -60,7 +60,7 @@ { "name": "Max Players", "description": "Sets the maximum number of players.", - "env_variable": "MAXPLAYERS", + "env_variable": "MAX_PLAYERS", "default_value": "28", "user_viewable": true, "user_editable": true,