made it better i guess

This commit is contained in:
CerberusV1
2024-10-15 14:49:18 +02:00
parent 0fcc24bd4c
commit 18a8d31a40
2 changed files with 5 additions and 5 deletions

View File

@@ -39,7 +39,7 @@ while true; do
condition=$(cat "${server}/eula.txt" | grep -c "eula=true")
if [[ ${condition} -eq 1 ]]; then
echo "Starting Server...."
.${s_start}
tmux new -d -s "${server_name}" "${s_start}"
elif [[ ${condition} -eq 0 ]]; then
echo "Before starting the server, please accept the EULA"
else
@@ -55,7 +55,7 @@ while true; do
clear
echo "Launch Menu"
echo "------------------------------------------------------------"
tmux a -t ${server_name}
tmux a -t "${server_name}"
read -p "Press Enter to continue..."
break
;;