From 016f321125c508f6abd139205df4cb7e4c857bd5 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 14 May 2017 19:42:29 +0100 Subject: [PATCH] Added extra rust details --- lgsm/functions/command_details.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 55df65e9d..4ac96281f 100644 --- a/lgsm/functions/command_details.sh +++ b/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}"