From f85e42f9ba7ee781c103e1a19da9cb63d16aed79 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 12 Jul 2020 23:09:03 +0100 Subject: [PATCH] messages --- lgsm/functions/command_validate.sh | 6 +++--- lgsm/functions/core_messages.sh | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lgsm/functions/command_validate.sh b/lgsm/functions/command_validate.sh index c21aacdbb..73b1d7ca0 100644 --- a/lgsm/functions/command_validate.sh +++ b/lgsm/functions/command_validate.sh @@ -12,18 +12,18 @@ fn_commandname(){ fn_commandname fn_validate(){ - fn_print_warn "${commandaction} server: Validate might overwrite some customised files" + fn_print_warn "Validate might overwrite some customised files" fn_script_log_warn "${commandaction} server: Validate might overwrite some customised files" totalseconds=3 for seconds in {3..1}; do - fn_print_warn "${commandaction} server: Validate might overwrite some customised files: ${totalseconds}" + fn_print_warn "Validate might overwrite some customised files: ${totalseconds}" totalseconds=$((totalseconds - 1)) sleep 1 if [ "${seconds}" == "0" ]; then break fi done - fn_print_warn_nl "${commandaction} server: Validate might overwrite some customised files" + fn_print_warn_nl "Validate might overwrite some customised files" fn_dl_steamcmd } diff --git a/lgsm/functions/core_messages.sh b/lgsm/functions/core_messages.sh index 7dddb1e1b..f3838ba80 100644 --- a/lgsm/functions/core_messages.sh +++ b/lgsm/functions/core_messages.sh @@ -531,16 +531,16 @@ fn_print_ascii_logo(){ } fn_print_stop_warning(){ - fn_print_warn "${commandaction} server: ${selfname} will be stopped" - fn_script_log_warn "${commandaction} server: ${selfname} will be stopped" + fn_print_warn "${selfname} will be stopped" + fn_script_log_warn "${selfname} will be stopped" totalseconds=3 for seconds in {3..1}; do - fn_print_warn "${commandaction} server: ${selfname} will be stopped: ${totalseconds}" + fn_print_warn "${selfname} will be stopped: ${totalseconds}" totalseconds=$((totalseconds - 1)) sleep 1 if [ "${seconds}" == "0" ]; then break fi done - fn_print_warn_nl "${commandaction} server: ${selfname} will be stopped" + fn_print_warn_nl "${selfname} will be stopped" }