diff --git a/src/pocketmine/Player.php b/src/pocketmine/Player.php index c498cebee..287ac7182 100644 --- a/src/pocketmine/Player.php +++ b/src/pocketmine/Player.php @@ -1594,7 +1594,8 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer{ if($to->distanceSquared($ev->getTo()) > 0.01){ //If plugins modify the destination $this->teleport($ev->getTo()); }else{ - $this->broadcastMovement(); + //TODO: workaround 1.14.30 bug: MoveActor(Absolute|Delta)Packet don't work on players anymore :( + $this->sendPosition($this, $this->yaw, $this->pitch, MovePlayerPacket::MODE_NORMAL, $this->hasSpawned); $distance = sqrt((($from->x - $to->x) ** 2) + (($from->z - $to->z) ** 2)); //TODO: check swimming (adds 0.015 exhaustion in MCPE)