World: Removed noisy debug message

This commit is contained in:
Dylan K. Taylor 2021-04-13 22:32:00 +01:00
parent ecf6de3430
commit 203cc7fcef
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -2040,7 +2040,6 @@ class World implements ChunkManager{
World::getXZ($nextChunkHash, $nextChunkX, $nextChunkZ);
if(isset($this->chunkPopulationRequestMap[$nextChunkHash])){
assert(!isset($this->activeChunkPopulationTasks[$nextChunkHash]), "Population for chunk $nextChunkX $nextChunkZ already running");
$this->logger->debug("Fulfilling population request for chunk $nextChunkX $nextChunkZ");
$this->orderChunkPopulation($nextChunkX, $nextChunkZ, null);
if(!isset($this->activeChunkPopulationTasks[$nextChunkHash])){
$failed[] = $nextChunkHash;