LightUpdate: Remove garbage left over from dab73d895099e4c1c7d632711e204971cbbb0590

This commit is contained in:
Dylan K. Taylor 2018-09-11 11:35:31 +01:00
parent c7d58db7eb
commit 69500fe183

View File

@ -54,14 +54,6 @@ abstract class LightUpdate{
$this->subChunkHandler = new SubChunkIteratorManager($this->level); $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 getLight(int $x, int $y, int $z) : int;
abstract protected function setLight(int $x, int $y, int $z, int $level); abstract protected function setLight(int $x, int $y, int $z, int $level);