World: remove spammy debug message

This commit is contained in:
Dylan K. Taylor 2021-10-30 16:13:01 +01:00
parent 63dfcc60c3
commit 465a509858
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -1412,7 +1412,6 @@ class World implements ChunkManager{
public function updateAllLight(int $x, int $y, int $z) : void{
if(($chunk = $this->getChunk($x >> Chunk::COORD_BIT_SIZE, $z >> Chunk::COORD_BIT_SIZE)) === null || $chunk->isLightPopulated() !== true){
$this->logger->debug("Skipped runtime light update of x=$x,y=$y,z=$z because the target area has not received base light calculation");
return;
}