Level: remove unused variable

This commit is contained in:
Dylan K. Taylor 2019-01-30 16:53:12 +00:00
parent c9f9f551f4
commit 8387c08db2

View File

@ -2631,7 +2631,7 @@ class Level implements ChunkManager, Metadatable{
}
private function queueUnloadChunk(int $x, int $z){
$this->unloadQueue[$index = Level::chunkHash($x, $z)] = microtime(true);
$this->unloadQueue[Level::chunkHash($x, $z)] = microtime(true);
}
public function unloadChunkRequest(int $x, int $z, bool $safe = true){