From 05b036d26f3ab3bce21ed0f1ed667df4cabbc48f Mon Sep 17 00:00:00 2001 From: bashermens <31279994+hermensbas@users.noreply.github.com> Date: Sat, 10 Jan 2026 20:18:52 +0100 Subject: [PATCH] Update 6_server-start.sh --- script/6_server-start.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/6_server-start.sh b/script/6_server-start.sh index 5757273..bfd6b46 100755 --- a/script/6_server-start.sh +++ b/script/6_server-start.sh @@ -73,7 +73,7 @@ AUTH_CMD="${SERVER_ROOT}/_server/azerothcore/acore.sh run-authserver" # Worldserver: normal vs debug (GDB) if [[ $DEBUG_MODE -eq 1 ]]; then echo "DEBUG MODE: Worldserver will run under GDB" - WORLD_CMD="${SERVER_ROOT}/_server/azerothcore/apps/startup-scripts/run-engine restart worldserver \ + WORLD_CMD="${SERVER_ROOT}/_server/azerothcore/apps/startup-scripts/src/run-engine restart worldserver \ --bin-path ${SERVER_ROOT}/_server/azerothcore/env/dist/bin \ --server-config ${SERVER_ROOT}/_server/azerothcore/conf/worldserver.conf \ --session-manager tmux \ @@ -82,7 +82,7 @@ if [[ $DEBUG_MODE -eq 1 ]]; then --crashes-path $CRASHES_PATH \ --no-restart" else - WORLD_CMD="${SERVER_ROOT}/_server/azerothcore/apps/startup-scripts/run-engine restart worldserver \ + WORLD_CMD="${SERVER_ROOT}/_server/azerothcore/apps/startup-scripts/src/run-engine restart worldserver \ --bin-path ${SERVER_ROOT}/_server/azerothcore/env/dist/bin \ --server-config ${SERVER_ROOT}/_server/azerothcore/conf/worldserver.conf \ --session-manager tmux \