diff --git a/src/pocketmine/Player.php b/src/pocketmine/Player.php index 93b9dcb4a..9a7464451 100644 --- a/src/pocketmine/Player.php +++ b/src/pocketmine/Player.php @@ -4018,6 +4018,9 @@ class Player extends Human implements CommandSender, InventoryHolder, ChunkLoade } $this->sendPosition($this, null, null, MovePlayerPacket::MODE_RESET); + //This only needs to be sent to players who could see us before the teleport. + $this->sendPosition($this, null, null, MovePlayerPacket::MODE_RESET, $this->getViewers()); + $this->spawnToAll(); $this->forceMovement = $this->teleportPosition; $this->teleportPosition = null;