From ffefcd44739b13e7ca29049f5cb2dd4cbfe8a049 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sun, 30 Jul 2017 20:58:08 +0100 Subject: [PATCH] Fixed 'moved too fast' when respawning --- src/pocketmine/Player.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pocketmine/Player.php b/src/pocketmine/Player.php index 24925571e..5542fa599 100644 --- a/src/pocketmine/Player.php +++ b/src/pocketmine/Player.php @@ -2631,6 +2631,7 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer{ $this->setPosition($realSpawn); //The client will move to the position of its own accord once chunks are sent $this->nextChunkOrderRun = 0; $this->isTeleporting = true; + $this->newPosition = null; } $this->resetLastMovements();