From 5fed48441ba1d5c22898db018907eded13ecd221 Mon Sep 17 00:00:00 2001 From: Daniel Ceregatti Date: Thu, 14 Aug 2025 15:00:42 -0600 Subject: [PATCH] Allow for the use of experimental by adding EXPERIMENTAL=1 into the .env file. --- files/bin/dz-common | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/files/bin/dz-common b/files/bin/dz-common index 8297e8f..e8c1ea8 100755 --- a/files/bin/dz-common +++ b/files/bin/dz-common @@ -33,10 +33,13 @@ export cyan="\e[36m" # DayZ release server Steam app 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. -export release_server_appid=1042420 +# Allow for the use of experimental via an environment variable +if [ ${EXPERIMENTAL} != "" ] +then + export release_server_appid=1042420 +fi # DayZ release client SteamID. This is for mods, as only the release client has them. export release_client_appid=221100