From fa89bbddc7166c9b10f7c3774e4a1a6eebe6c726 Mon Sep 17 00:00:00 2001 From: Red-Thirten Date: Sun, 25 May 2025 10:48:04 -0700 Subject: [PATCH] Fix check for old Eggs `STEAMCMD_BETAID` is nullable and is null by default, causing a false-positive for this check. `PARAM_NOLOGS` is a much better Egg variable to check. --- games/arma3/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games/arma3/entrypoint.sh b/games/arma3/entrypoint.sh index 3c0137d..d3f5282 100644 --- a/games/arma3/entrypoint.sh +++ b/games/arma3/entrypoint.sh @@ -197,7 +197,7 @@ sleep 1 cd ${HOME} || exit 1 # Check for old Eggs -if [[ -z ${STEAMCMD_BETAID} ]]; then # STEAMCMD_BETAID was not in the previous version +if [[ -z ${PARAM_NOLOGS} ]]; then # PARAM_NOLOGS was not in the previous version echo -e "\n${RED}[STARTUP_ERR]: Please contact your administrator/host for support, and give them the following message:${NC}\n" echo -e "\t${CYAN}Your Arma 3 Egg is outdated and no longer supported.${NC}" echo -e "\t${CYAN}Please download the latest version at the following link, and install it in your panel:${NC}"