From 7c461dffceb674fb09077b0d9d53c27c7ab86f9b Mon Sep 17 00:00:00 2001 From: Jared Ballou Date: Mon, 23 May 2016 18:50:00 -0400 Subject: [PATCH] Updated console to actually start console if server needs to be started. --- functions/command_console.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/command_console.sh b/functions/command_console.sh index 9de9ca922..e50071059 100644 --- a/functions/command_console.sh +++ b/functions/command_console.sh @@ -39,7 +39,7 @@ else while true; do read -p "Do you want to start the server? [y/N]" yn case $yn in - [Yy]* ) command_start.sh; break;; + [Yy]* ) command_start.sh; command_console.sh; break;; [Nn]* ) break;; * ) echo "Please answer yes or no.";; esac