Просмотр исходного кода

Merge remote-tracking branch 'refs/remotes/origin/master' into development

Daniel Gibbs 9 лет назад
Родитель
Сommit
f42bf1fd0d
1 измененных файлов с 5 добавлено и 0 удалено
  1. 5 0
      lgsm/functions/check_system_requirements.sh

+ 5 - 0
lgsm/functions/check_system_requirements.sh

@@ -16,6 +16,11 @@ if [ "${gamename}" == "Rust" ]; then
 	ramrequirementgb="4"
 	ramrequirementgb="4"
 fi
 fi
 
 
+if [ "${gamename}" == "ARMA 3" ]; 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 "${ramrequirement}" ]; then
 if [ -n "${ramrequirement}" ]; then
 	if [ "${physmemtotalmb}" -lt "${ramrequirementmb}" ]; then
 	if [ "${physmemtotalmb}" -lt "${ramrequirementmb}" ]; then