Skip to content

Commit

Permalink
Remove GAME_AUTO_JOINABLE
Browse files Browse the repository at this point in the history
  • Loading branch information
jonpas committed Sep 12, 2023
1 parent 4a8502a commit 018e737
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ ENV GAME_PASSWORD=""
ENV GAME_PASSWORD_ADMIN=""
ENV GAME_SCENARIO_ID="{ECC61978EDCC2B5A}Missions/23_Campaign.conf"
ENV GAME_MAX_PLAYERS=32
ENV GAME_AUTO_JOINABLE=false
ENV GAME_VISIBLE=true
ENV GAME_SUPPORTED_PLATFORMS=PLATFORM_PC,PLATFORM_XBL
ENV GAME_PROPS_BATTLEYE=true
Expand Down
1 change: 0 additions & 1 deletion docker_default.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"passwordAdmin": "",
"scenarioId": "{ECC61978EDCC2B5A}Missions/23_Campaign.conf",
"maxPlayers": 32,
"autoJoinable": false,
"visible": true,
"supportedPlatforms": [
"PLATFORM_PC",
Expand Down
2 changes: 0 additions & 2 deletions launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,6 @@ def bool_str(text):
config["game"]["scenarioId"] = os.environ["GAME_SCENARIO_ID"]
if env_defined("GAME_MAX_PLAYERS"):
config["game"]["maxPlayers"] = int(os.environ["GAME_MAX_PLAYERS"])
if env_defined("GAME_AUTO_JOINABLE"):
config["game"]["autoJoinable"] = bool_str(os.environ["GAME_AUTO_JOINABLE"])
if env_defined("GAME_VISIBLE"):
config["game"]["visible"] = bool_str(os.environ["GAME_VISIBLE"])
if env_defined("GAME_SUPPORTED_PLATFORMS"):
Expand Down

0 comments on commit 018e737

Please sign in to comment.