Removed redundant assignment

This commit is contained in:
Dylan K. Taylor 2017-09-17 20:01:11 +01:00
parent bdee746e46
commit a99eee9def

View File

@ -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);