mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-05 17:36:12 +00:00
ChunkManager->setChunk() no longer accepts NULL
This commit is contained in:
@ -42,7 +42,7 @@ interface ChunkManager{
|
||||
|
||||
public function getChunk(int $chunkX, int $chunkZ) : ?Chunk;
|
||||
|
||||
public function setChunk(int $chunkX, int $chunkZ, ?Chunk $chunk) : void;
|
||||
public function setChunk(int $chunkX, int $chunkZ, Chunk $chunk) : void;
|
||||
|
||||
/**
|
||||
* Returns the height of the world
|
||||
|
Reference in New Issue
Block a user