Преглед изворни кода

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"
 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 [ -n "${ramrequirementmb}" ]; then
 	if [ "${physmemtotalmb}" -lt "${ramrequirementmb}" ]; then