From e1816bd41581c128e46d2f610eedb6411b5296c3 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Fri, 4 Sep 2020 22:10:42 +0100 Subject: [PATCH] SubChunkInterface: clarify documentation of isEmptyFast() --- src/world/format/SubChunkInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world/format/SubChunkInterface.php b/src/world/format/SubChunkInterface.php index 8c0af1766..d2daa72fe 100644 --- a/src/world/format/SubChunkInterface.php +++ b/src/world/format/SubChunkInterface.php @@ -34,7 +34,7 @@ interface SubChunkInterface{ /** * Returns a non-authoritative bool to indicate whether the chunk contains any blocks. - * This is a fast check, but may be inaccurate if the chunk has been modified and not garbage-collected. + * This may report non-empty erroneously if the chunk has been modified and not garbage-collected. */ public function isEmptyFast() : bool;