Remove useless newline

This commit is contained in:
Dylan K. Taylor 2021-10-30 21:25:47 +01:00
parent 5b8ce7e3e2
commit 1d22761d27
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -101,8 +101,7 @@ final class SurvivalBlockBreakHandler{
}
public function update() : bool{
if(
$this->player->getPosition()->distanceSquared($this->blockPos->add(0.5, 0.5, 0.5)) > $this->maxPlayerDistance ** 2){
if($this->player->getPosition()->distanceSquared($this->blockPos->add(0.5, 0.5, 0.5)) > $this->maxPlayerDistance ** 2){
return false;
}