From 656ee0bcb52001f78bb25afef0f53c174d4c978e Mon Sep 17 00:00:00 2001 From: norimicry Date: Sat, 30 Mar 2024 12:19:04 -0400 Subject: [PATCH] Set default ENABLE_AUTOLOADGAME_MOD to true in docker-compose The ENABLE_AUTOLOADGAME_MOD variable has been updated to default to 'true' instead of 'null' in the docker-compose configuration. This change sets the game to autoload by default, eliminating the need for manual start of the game at each boot. --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index d2d397f..1e7ee25 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -45,7 +45,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}