From bf5c06f285a9353966dfba5925bebeb2256e8934 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sat, 20 Jun 2020 21:45:35 +0100 Subject: [PATCH] World: get rid of temporalPosition too (entirely unused) --- src/world/World.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/world/World.php b/src/world/World.php index 90d1c6e92..2fa0c1e1d 100644 --- a/src/world/World.php +++ b/src/world/World.php @@ -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; }