From ca6b52f06dc5b5f011b6a31fa7ca054c869e312a Mon Sep 17 00:00:00 2001 From: "Carlos M. Martinez" Date: Sat, 17 Feb 2024 14:48:07 -0500 Subject: [PATCH] Changed shutdown to DoExit, resolves #395 --- scripts/helper_functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/helper_functions.sh b/scripts/helper_functions.sh index 657fe4b2c..782913eab 100644 --- a/scripts/helper_functions.sh +++ b/scripts/helper_functions.sh @@ -214,7 +214,7 @@ shutdown_server() { local return_val=0 # Do not shutdown if not able to save if save_server; then - if ! RCON "shutdown 1"; then + if ! RCON "DoExit"; then return_val=1 fi else