From a12d6cc2276f1e2c105858978a440b9a47839ceb Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 13 Jan 2017 05:03:04 +0100 Subject: [PATCH] I need to get better with tables. --- lgsm/functions/command_details.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index bc634a4ce..eee2af76e 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -351,10 +351,10 @@ fn_details_ark(){ echo -e "> Game\tINBOUND\t${port}\tudp" # Don't do arithmetics if ever the port wasn't a numeric value if [ "${port}" -eq "${port}" ]; then - echo -e "> RAW\t\INBOUND\t$((port+1))\tudp" + echo -e "> RAW\tINBOUND\t$((port+1))\tudp" fi echo -e "> Query\tINBOUND\t${queryport}\tudp" - echo -e "> RCON\INBOUND\t${rconport}\ttcp" + echo -e "> RCON\tINBOUND\t${rconport}\ttcp" } | column -s $'\t' -t }