From 2d86a9734072f3523956cf79df8cbbe0895e7777 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 21:48:29 +0200 Subject: [PATCH] fn_script_log_fatal & message --- lgsm/functions/command_start.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index 9f5aa295a..f3a6afdc2 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -13,15 +13,15 @@ fn_check_is_in_tmux(){ if [ -n "${TMUX}" ];then fn_print_fail_nl "Can't start a tmux session inside of a tmux session." fn_script_log_fatal "Can't start a tmux session inside of a tmux session." - fn_print_information_nl "LGSM already runs the server inside of a tmux session." + fn_print_information_nl "LGSM already runs the server inside of a tmux session whenever it's possible." core_exit.sh fi } fn_check_is_in_screen(){ if [ "$TERM" = "screen" ];then fn_print_fail_nl "Can't start a tmux session inside of a screen session." - fn_script_log_fail "Can't start a tmux session inside of a screen session." - fn_print_information_nl "LGSM already runs the server inside of a tmux session." + fn_script_log_fatal "Can't start a tmux session inside of a screen session." + fn_print_information_nl "LGSM already runs the server inside of a tmux session whenever it's possible." core_exit.sh fi }