From 973dabf1e1692c70f9e2055a31c42b02eb6f6be0 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 15 Oct 2018 23:25:41 +0100 Subject: [PATCH] If multiple IP addresses display as not set in details --- lgsm/functions/info_messages.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/info_messages.sh b/lgsm/functions/info_messages.sh index 250b9d087..cbef4374c 100644 --- a/lgsm/functions/info_messages.sh +++ b/lgsm/functions/info_messages.sh @@ -139,7 +139,11 @@ fn_info_message_gameserver(){ fi # Server ip - echo -e "${blue}Server IP:\t${default}${ip}:${port}" + if [ ${multiple_ip} == 1 ]; then + echo -e "${blue}Server IP:\t${default}NOT SET" + else + echo -e "${blue}Server IP:\t${default}${ip}:${port}" + fi # External server ip if [ -n "${extip}" ]; then