From 9db9daaa372fe4532b0074b0f63dd83a5af6034f Mon Sep 17 00:00:00 2001 From: norimicry Date: Fri, 29 Mar 2024 20:21:44 -0400 Subject: [PATCH] Set default value of ENABLE_AUTOLOADGAME_MOD to true in docker-compose The code change sets the default value of ENABLE_AUTOLOADGAME_MOD to true in the docker-compose file. This ensures that the AutoLoadGame mod will automatically start by default each time the game boots. --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 6a7fedc..1aaec2f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -43,7 +43,7 @@ services: ## Auto Load Game mod # Removing this will mean you need to VNC in to manually start the game each boot - - ENABLE_AUTOLOADGAME_MOD=${ENABLE_AUTOLOADGAME-null} + - ENABLE_AUTOLOADGAME_MOD=${ENABLE_AUTOLOADGAME-true} - AUTO_LOAD_GAME_LAST_FILE_LOADED=${AUTO_LOAD_GAME_LAST_FILE_LOADED-null} - AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE=${AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE-true} - AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER=${AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER-true}