From f580f27ec754e558957b58c09211b41284b560a5 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Mon, 1 Jan 2018 11:59:22 +0000 Subject: [PATCH] LevelProvider: Updated documentation --- src/pocketmine/level/format/io/LevelProvider.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/pocketmine/level/format/io/LevelProvider.php b/src/pocketmine/level/format/io/LevelProvider.php index edbb63239..0995d075c 100644 --- a/src/pocketmine/level/format/io/LevelProvider.php +++ b/src/pocketmine/level/format/io/LevelProvider.php @@ -86,13 +86,16 @@ interface LevelProvider{ public function getGeneratorOptions() : array; /** - * @param Chunk $chunk + * Saves a chunk (usually to disk). * - * @return void + * @param Chunk $chunk */ public function saveChunk(Chunk $chunk) : void; /** + * Loads a chunk (usually from disk storage) and returns it. If the chunk does not exist, null is returned, or an + * empty Chunk if $create is specified. + * * @param int $chunkX * @param int $chunkZ * @param bool $create