World: get rid of temporalPosition too (entirely unused)

This commit is contained in:
Dylan K. Taylor 2020-06-20 21:45:35 +01:00
parent fc7672c6ba
commit bf5c06f285

View File

@ -225,9 +225,6 @@ class World implements ChunkManager{
/** @var bool */
private $autoSave = true;
/** @var Position */
private $temporalPosition;
/** @var int */
private $sleepTicks = 0;
@ -366,7 +363,6 @@ class World implements ChunkManager{
}
$this->timings = new WorldTimings($this);
$this->temporalPosition = new Position(0, 0, 0, $this);
}
public function getTickRateTime() : float{
@ -435,7 +431,6 @@ class World implements ChunkManager{
$this->provider->close();
$this->provider = null;
$this->blockCache = [];
$this->temporalPosition = null;
$this->closed = true;
}