mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-10-16 11:58:00 +00:00
fix build failure
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user