Browse Source

remove if

pull/3000/head
Daniel Gibbs 6 years ago
parent
commit
a0c1ce9210
  1. 6
      lgsm/functions/command_console.sh

6
lgsm/functions/command_console.sh

@ -12,7 +12,7 @@ check.sh
fn_print_header
# Verbose output
if [ "${consoleverbose}" == "on" ]; then
if [ "${consoleoutput}" == "on" ]; then
fn_print_information_nl "${gamename} produces a verbose output to the console"
elif [ "${consoleverbose}" == "off" ]; then
fn_print_information_nl "${gamename} does NOT produce a verbose output to the console"
@ -25,10 +25,6 @@ elif [ "${consolinteractive}" == "off" ]; then
fn_print_information_nl "${gamename} does NOT allow server commands to be entered in to the console"
fi
if [ "${shortname}" == "rust" ]||[ "${shortname}" == "hw" ]||[ "${shortname}" == "ark" ]; then
fn_print_information_nl "${gamename} does not produce a verbose output to the console"
fn_print_information_nl "${gamename} does not allow server commands to be entered in to the console"
fi
fn_print_information_nl "Press \"CTRL+b\" then \"d\" to exit console."
fn_print_warning_nl "Do NOT press CTRL+c to exit."
echo -e "* https://docs.linuxgsm.com/commands/console"

Loading…
Cancel
Save