diff --git a/src/pocketmine/Player.php b/src/pocketmine/Player.php index 45da7e6a3..904194f4a 100644 --- a/src/pocketmine/Player.php +++ b/src/pocketmine/Player.php @@ -1640,9 +1640,7 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer{ public function setMotion(Vector3 $mot){ if(parent::setMotion($mot)){ - if($this->chunk !== null){ - $this->broadcastMotion(); - } + $this->broadcastMotion(); if($this->motionY > 0){ $this->startAirTicks = (-log($this->gravity / ($this->gravity + $this->drag * $this->motionY)) / $this->drag) * 2 + 5;