mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-21 16:24:05 +00:00
Merge branch 'master' of github.com:PocketMine/PocketMine-MP
This commit is contained in:
commit
f5fee4c909
@ -749,7 +749,7 @@ class Server{
|
||||
$name = strtolower($name);
|
||||
$delta = PHP_INT_MAX;
|
||||
foreach($this->getOnlinePlayers() as $player){
|
||||
if(stripos($player->getName(), $name) !== false){
|
||||
if(stripos($player->getName(), $name) === 0){
|
||||
$curDelta = strlen($player->getName()) - strlen($name);
|
||||
if($curDelta < $delta){
|
||||
$found = $player;
|
||||
@ -1814,7 +1814,7 @@ class Server{
|
||||
if(($data = json_decode($reply)) !== false and isset($data->crashId)){
|
||||
$reportId = $data->crashId;
|
||||
$reportUrl = $data->crashUrl;
|
||||
$this->logger->emergency("The crash dump has ben automatically submitted to the Crash Archive. You can view it on $reportUrl or use the ID #$reportId.");
|
||||
$this->logger->emergency("The crash dump has been automatically submitted to the Crash Archive. You can view it on $reportUrl or use the ID #$reportId.");
|
||||
}
|
||||
}
|
||||
|
||||
|
4
start.sh
4
start.sh
@ -24,7 +24,7 @@ done
|
||||
if [ "$PHP_BINARY" == "" ]; then
|
||||
if [ -f ./bin/php5/bin/php ]; then
|
||||
PHP_BINARY="./bin/php5/bin/php"
|
||||
elif [ type php 2>/dev/null ]; then
|
||||
elif type php > /dev/null 2>&1 ; then
|
||||
PHP_BINARY=$(type -p php)
|
||||
else
|
||||
echo "Couldn't find a working PHP binary, please use the installer."
|
||||
@ -57,4 +57,4 @@ done
|
||||
|
||||
if [ ${LOOPS} -gt 1 ]; then
|
||||
echo "Restarted $LOOPS times"
|
||||
fi
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user