diff --git a/start.cmd b/start.cmd index a41d4c643c..469b476dbc 100644 --- a/start.cmd +++ b/start.cmd @@ -28,15 +28,15 @@ ping 127.0.0.1 -n 3 -w 1000>nul ) else ( if exist php.cmd ( if exist bin\ansicon.exe ( - bin\ansicon.exe php.cmd -d enable_dl=On PocketMine-MP.php --enable-ansi + bin\ansicon.exe php.cmd -d enable_dl=On PocketMine-MP.php --enable-ansi %* ) else ( - php.cmd -d enable_dl=On PocketMine-MP.php + php.cmd -d enable_dl=On PocketMine-MP.php %* ) ) else ( if exist bin\ansicon.exe ( - bin\ansicon.exe php -d enable_dl=On PocketMine-MP.php --enable-ansi + bin\ansicon.exe php -d enable_dl=On PocketMine-MP.php --enable-ansi %* ) else ( - php -d enable_dl=On PocketMine-MP.php + php -d enable_dl=On PocketMine-MP.php %* ) ) ) diff --git a/start.sh b/start.sh index e7ad5b6ab5..68f002f6ad 100644 --- a/start.sh +++ b/start.sh @@ -2,10 +2,10 @@ DIR="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" cd $DIR if [ -f php5/bin/php ]; then -./php5/bin/php -d enable_dl=On PocketMine-MP.php +./php5/bin/php -d enable_dl=On PocketMine-MP.php $@ read -p "Press [Enter] to continue..." exit 0 fi -php -d enable_dl=On PocketMine-MP.php +php -d enable_dl=On PocketMine-MP.php $@ read -p "Press [Enter] to continue..." exit 0 \ No newline at end of file