From ab9615fb9c3ad1111ae7bd19c8738e2a3378337b Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Thu, 15 Apr 2021 21:19:58 +0100 Subject: [PATCH] World: fixed documentation for getHighestAdjacentPotentialBlockSkyLight() [ci skip] --- src/world/World.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world/World.php b/src/world/World.php index 27da4673cf..71a371a354 100644 --- a/src/world/World.php +++ b/src/world/World.php @@ -1318,7 +1318,7 @@ class World implements ChunkManager{ } /** - * Returns the highest block light level available in the positions adjacent to the specified block coordinates. + * Returns the highest potential level of sky light in the positions adjacent to the specified block coordinates. */ public function getHighestAdjacentPotentialBlockSkyLight(int $x, int $y, int $z) : int{ return $this->getHighestAdjacentLight($x, $y, $z, \Closure::fromCallable([$this, 'getPotentialBlockSkyLightAt']));