From 29f002b32c2088a2521a688a843cfb9e1253e916 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Tue, 22 Oct 2019 12:23:42 +0100 Subject: [PATCH] LightUpdate: fixed type doc for updateNodes field --- src/pocketmine/level/light/LightUpdate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pocketmine/level/light/LightUpdate.php b/src/pocketmine/level/light/LightUpdate.php index 22c7fe18b..a2c4bc45e 100644 --- a/src/pocketmine/level/light/LightUpdate.php +++ b/src/pocketmine/level/light/LightUpdate.php @@ -34,7 +34,7 @@ abstract class LightUpdate{ /** @var ChunkManager */ protected $level; - /** @var int[] blockhash => new light level */ + /** @var int[][] blockhash => [x, y, z, new light level] */ protected $updateNodes = []; /** @var \SplQueue */