From cfb9cc8999f9e6e50578e19afa749521b67e0771 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Thu, 29 Oct 2020 13:22:35 +0000 Subject: [PATCH] fix build failure --- src/world/World.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/world/World.php b/src/world/World.php index e0ad8cda4..9b0975aa2 100644 --- a/src/world/World.php +++ b/src/world/World.php @@ -1235,7 +1235,7 @@ class World implements ChunkManager{ if( !$this->isInWorld($x1, $y1, $z1) || ($chunk = $this->getChunk($x1 >> 4, $z1 >> 4)) === null || - !$chunk->isLightPopulated() + $chunk->isLightPopulated() !== true ){ continue; } @@ -1260,7 +1260,7 @@ class World implements ChunkManager{ if( !$this->isInWorld($x1, $y1, $z1) || ($chunk = $this->getChunk($x1 >> 4, $z1 >> 4)) === null || - !$chunk->isLightPopulated() + $chunk->isLightPopulated() !== true ){ continue; }