diff --git a/src/pocketmine/Server.php b/src/pocketmine/Server.php index 03d4dbdb1..06b906286 100644 --- a/src/pocketmine/Server.php +++ b/src/pocketmine/Server.php @@ -2092,7 +2092,7 @@ class Server{ $next = $this->nextTick - 0.0001; if($next > microtime(true)){ try{ - time_sleep_until($next); + @time_sleep_until($next); }catch(\Throwable $e){ //Sometimes $next is less than the current time. High load? }