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.
This commit is contained in:
norimicry 2024-03-29 20:21:44 -04:00
parent 13597e046a
commit 9db9daaa37

View File

@ -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}