Browse Source

Added extra rust details

pull/1477/head
Daniel Gibbs 8 years ago
parent
commit
016f321125
  1. 10
      lgsm/functions/command_details.sh

10
lgsm/functions/command_details.sh

@ -123,6 +123,11 @@ fn_details_gameserver(){
echo -e "${blue}RCON password:\t${default}${rconpassword}"
fi
# RCON web (Rust)
if [ -n "${rconweb}" ]; then
echo -e "${blue}RCON web:\t${default}${rconweb}"
fi
# Admin password
if [ -n "${adminpassword}" ]; then
echo -e "${blue}Admin password:\t${default}${adminpassword}"
@ -193,6 +198,11 @@ fn_details_gameserver(){
echo -e "${blue}ASE:\t${default}${ase}"
fi
# Save interval (Rust)
if [ -n "${saveinterval}" ]; then
echo -e "${blue}ASE:\t${default}${saveinterval} s"
fi
# Online status
if [ "${status}" == "0" ]; then
echo -e "${blue}Status:\t${red}OFFLINE${default}"

Loading…
Cancel
Save