mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-10 05:34:54 +00:00
World->getHighestBlockAt() now throws an exception instead of returning -1 in ungenerated terrain
This commit is contained in:
parent
fd99445c5b
commit
4ea5401d72
@ -2056,13 +2056,14 @@ class World implements ChunkManager{
|
|||||||
/**
|
/**
|
||||||
* Gets the highest block Y value at a specific $x and $z
|
* Gets the highest block Y value at a specific $x and $z
|
||||||
*
|
*
|
||||||
* @return int 0-255, or -1 if the chunk is not generated
|
* @return int 0-255
|
||||||
|
* @throws WorldException if the terrain is not generated
|
||||||
*/
|
*/
|
||||||
public function getHighestBlockAt(int $x, int $z) : int{
|
public function getHighestBlockAt(int $x, int $z) : int{
|
||||||
if(($chunk = $this->loadChunk($x >> 4, $z >> 4, false)) !== null){
|
if(($chunk = $this->loadChunk($x >> 4, $z >> 4, false)) !== null){
|
||||||
return $chunk->getHighestBlockAt($x & 0x0f, $z & 0x0f);
|
return $chunk->getHighestBlockAt($x & 0x0f, $z & 0x0f);
|
||||||
}
|
}
|
||||||
return -1; //TODO: this should probably throw an exception (terrain not generated yet)
|
throw new WorldException("Cannot get highest block in an ungenerated chunk");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user