Переглянути джерело

Minecraft RAM requirement

1GB Minimum
UltimateByte 9 роки тому
батько
коміт
6a7902c889
1 змінених файлів з 5 додано та 0 видалено
  1. 5 0
      lgsm/functions/check_system_requirements.sh

+ 5 - 0
lgsm/functions/check_system_requirements.sh

@@ -21,6 +21,11 @@ if [ "${gamename}" == "ARMA 3" ]; then
 	ramrequirementgb="1"
 	ramrequirementgb="1"
 fi
 fi
 
 
+if [ "${gamename}" == "Minecraft" ]; then
+	ramrequirementmb="1000"
+	ramrequirementgb="1"
+fi
+
 # If the game or engine has a minimum RAM Requirement, compare it to system's available RAM.
 # If the game or engine has a minimum RAM Requirement, compare it to system's available RAM.
 if [ -n "${ramrequirementmb}" ]; then
 if [ -n "${ramrequirementmb}" ]; then
 	if [ "${physmemtotalmb}" -lt "${ramrequirementmb}" ]; then
 	if [ "${physmemtotalmb}" -lt "${ramrequirementmb}" ]; then