From f93d373230e14af4bc006c1a0c9d0e0551954b09 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 12 Aug 2016 15:05:16 +0100 Subject: [PATCH] Fixed system_requirements --- lgsm/functions/check.sh | 2 +- lgsm/functions/check_system_requirements.sh | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/check.sh b/lgsm/functions/check.sh index d3bab79b8..58a3041d7 100644 --- a/lgsm/functions/check.sh +++ b/lgsm/functions/check.sh @@ -75,7 +75,7 @@ do fi done -local allowed_commands_array=( command_install.sh command_start.sh command_debug.sh ) +local allowed_commands_array=( command_debug.sh command_start.sh command_install.sh ) for allowed_command in "${allowed_commands_array[@]}" do if [ "${allowed_command}" == "${function_selfname}" ]; then diff --git a/lgsm/functions/check_system_requirements.sh b/lgsm/functions/check_system_requirements.sh index 4cf139174..1d735642d 100644 --- a/lgsm/functions/check_system_requirements.sh +++ b/lgsm/functions/check_system_requirements.sh @@ -22,12 +22,14 @@ if [ "${gamename}" == "ARMA 3" ]; then fi # If the game or engine has a minimum RAM Requirement, compare it to system's available RAM. -if [ -n "${ramrequirement}" ]; then +if [ -n "${ramrequirementmb}" ]; then if [ "${physmemtotalmb}" -lt "${ramrequirementmb}" ]; then + fn_print_dots "Check RAM" + sleep 0.5 # Warn the user - fn_print_warn "Insufficient memory: ${ramrequirementgb}G required, ${physmemtotal} available" + fn_print_warn_nl "Check RAM: ${ramrequirementgb}G required, ${physmemtotal} available" sleep 1 - fn_print_warning "You may experiance poor performance from your server" + echo " * ${gamename} server may fail to run or experience poor performance." sleep 1 fi fi