Allow for the use of experimental by adding EXPERIMENTAL=1 into the .env file.

This commit is contained in:
Daniel Ceregatti 2025-08-14 15:00:42 -06:00
parent 4fc2013bd0
commit 5fed48441b

View file

@ -33,10 +33,13 @@ export cyan="\e[36m"
# DayZ release server Steam app ID. # DayZ release server Steam app ID.
# Now that the Linux server is released, the binaries will come from this ID. # Now that the Linux server is released, the binaries will come from this ID.
#export release_server_appid=223350 export release_server_appid=223350
# Leaving the experimental server appid here to allow for the use of the experimental server. # Allow for the use of experimental via an environment variable
export release_server_appid=1042420 if [ ${EXPERIMENTAL} != "" ]
then
export release_server_appid=1042420
fi
# DayZ release client SteamID. This is for mods, as only the release client has them. # DayZ release client SteamID. This is for mods, as only the release client has them.
export release_client_appid=221100 export release_client_appid=221100