mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-07-03 08:39:53 +00:00
fix build failure
This commit is contained in:
parent
b079772d32
commit
cfb9cc8999
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user