Browse Source

Minecraft RAM requirement

1GB Minimum
pull/1024/head
UltimateByte 9 years ago
committed by GitHub
parent
commit
6a7902c889
  1. 5
      lgsm/functions/check_system_requirements.sh

5
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

Loading…
Cancel
Save