From a99eee9def3a09a06fad6f7f10361124fcb85c20 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sun, 17 Sep 2017 20:01:11 +0100 Subject: [PATCH] Removed redundant assignment --- src/pocketmine/Player.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pocketmine/Player.php b/src/pocketmine/Player.php index b91fc5c8ff..130acb3b0a 100644 --- a/src/pocketmine/Player.php +++ b/src/pocketmine/Player.php @@ -642,7 +642,6 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer{ $this->loaderId = Level::generateChunkLoaderId($this); $this->chunksPerTick = (int) $this->server->getProperty("chunk-sending.per-tick", 4); $this->spawnThreshold = (int) (($this->server->getProperty("chunk-sending.spawn-radius", 4) ** 2) * M_PI); - $this->spawnPosition = null; $this->gamemode = $this->server->getGamemode(); $this->setLevel($this->server->getDefaultLevel()); $this->boundingBox = new AxisAlignedBB(0, 0, 0, 0, 0, 0);