diff --git a/functions/check.sh b/functions/check.sh index fd8b57a30..86e141416 100644 --- a/functions/check.sh +++ b/functions/check.sh @@ -61,6 +61,10 @@ do fi done -if [ "${function_selfname}" != "command_install.sh" ]; then - check_config.sh -fi \ No newline at end of file +local allowed_commands_array=( command_console.sh command_debug.sh command_details.sh command_monitor.sh command_start.sh command_stop.sh ) +for allowed_command in "${allowed_commands_array[@]}" +do + if [ "${allowed_command}" == "${function_selfname}" ]; then + check_config.sh + fi +done \ No newline at end of file diff --git a/functions/check_config.sh b/functions/check_config.sh index e12d942c0..24d32318f 100644 --- a/functions/check_config.sh +++ b/functions/check_config.sh @@ -8,7 +8,7 @@ lgsm_version="060116" if [ ! -e "${servercfgfullpath}" ]; then if [ "${gamename}" != "Hurtworld" ]; then - fn_printwarnnl "Configuration file missing!" + fn_printwarnnl "Config file missing!" echo "${servercfgfullpath}" fn_scriptlog "Configuration file missing!" fn_scriptlog "${servercfgfullpath}"