From 0fa57e2bbe38f56ce247b23e611144a4076ef150 Mon Sep 17 00:00:00 2001 From: aleos89 Date: Mon, 4 Dec 2017 14:20:13 -0500 Subject: [PATCH] Follow up to 53db435 * Corrected some typos. Thanks to @keitenai! --- tools/runserver.bat | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/runserver.bat b/tools/runserver.bat index 5dc8132081..cf721a7681 100644 --- a/tools/runserver.bat +++ b/tools/runserver.bat @@ -44,7 +44,7 @@ goto :EOF :Watch REM this is to align terminology with athena-start, (start with restart mode) echo "Starting all serv" -set "resart_mode=on" +set "restart_mode=on" call :startLogin call :startChar call :startMap @@ -52,7 +52,7 @@ goto :EOF :Start echo "Starting all serv" -set "resart_mode=off" +set "restart_mode=off" call :startLogin call :startChar call :startMap @@ -98,19 +98,19 @@ goto :EOF REM start sub targets :startLogin call :getLoginStatus -if "%login_running%" == "false" ( start cmd /k logserv.bat %resart_mode% +if "%login_running%" == "false" ( start cmd /k logserv.bat %restart_mode% ) else echo "Login serv is already running pid=%LoginServPID%" goto :EOF :startChar call :getCharStatus -if "%char_running%" == "false" ( start cmd /k charserv.bat %resart_mode% +if "%char_running%" == "false" ( start cmd /k charserv.bat %restart_mode% ) else echo "Char serv is already running, pid=%CharServPID%" goto :EOF :startMap call :getMapStatus -if "%map_running%" == "false" ( start cmd /k mapserv.bat %resart_mode% +if "%map_running%" == "false" ( start cmd /k mapserv.bat %restart_mode% ) else echo "Map serv is already running, pid=%MapServPID%" goto :EOF