Browse Source

Fix ARK dedicated server minimum RAM requirements

minor, was checking for 4GB but warning about 1GB.
Bourne-ID 8 years ago
parent
commit
089c0f70cb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lgsm/functions/check_system_requirements.sh

+ 1 - 1
lgsm/functions/check_system_requirements.sh

@@ -14,7 +14,7 @@ info_distro.sh
 
 if [ "${gamename}" == "ARK: Survival Evolved" ]; then
 	ramrequirementmb="4000"
-	ramrequirementgb="1"
+	ramrequirementgb="4"
 elif [ "${gamename}" == "ARMA 3" ]; then
 	ramrequirementmb="1000"
 	ramrequirementgb="1"