From 69500fe183c08a77696f3da6000b8418aeda6f4c Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Tue, 11 Sep 2018 11:35:31 +0100 Subject: [PATCH] LightUpdate: Remove garbage left over from dab73d895099e4c1c7d632711e204971cbbb0590 --- src/pocketmine/level/light/LightUpdate.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/pocketmine/level/light/LightUpdate.php b/src/pocketmine/level/light/LightUpdate.php index 61778de0a..6e82d2f68 100644 --- a/src/pocketmine/level/light/LightUpdate.php +++ b/src/pocketmine/level/light/LightUpdate.php @@ -54,14 +54,6 @@ abstract class LightUpdate{ $this->subChunkHandler = new SubChunkIteratorManager($this->level); } - public function addSpreadNode(int $x, int $y, int $z){ - $this->spreadQueue->enqueue([$x, $y, $z]); - } - - public function addRemoveNode(int $x, int $y, int $z, int $oldLight){ - $this->spreadQueue->enqueue([$x, $y, $z, $oldLight]); - } - abstract protected function getLight(int $x, int $y, int $z) : int; abstract protected function setLight(int $x, int $y, int $z, int $level);