Browse Source

Fix ARK dedicated server minimum RAM requirements

minor, was checking for 4GB but warning about 1GB.
Bourne-ID 8 năm trước cách đây
mục cha
commit
089c0f70cb
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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"