From eccd258aebbc1f812cbed40fc82beb1b3e070885 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sat, 17 Jul 2021 21:49:11 +0100 Subject: [PATCH] start.cmd: fixed incorrect php.ini scan dir when using a non-local binary --- start.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.cmd b/start.cmd index e2c7dca30..4e4c3a93e 100644 --- a/start.cmd +++ b/start.cmd @@ -22,5 +22,5 @@ if exist bin\mintty.exe ( start "" bin\mintty.exe -o Columns=88 -o Rows=32 -o AllowBlinking=0 -o FontQuality=3 -o Font="Consolas" -o FontHeight=10 -o CursorType=0 -o CursorBlinks=1 -h error -t "PocketMine-MP" -i bin/pocketmine.ico -w max %PHP_BINARY% %POCKETMINE_FILE% --enable-ansi %* ) else ( REM pause on exitcode != 0 so the user can see what went wrong - %PHP_BINARY% -c bin\php %POCKETMINE_FILE% %* || pause + %PHP_BINARY% %POCKETMINE_FILE% %* || pause )