From 433f5451d782478413f84e7d42e8c19715ba91dd Mon Sep 17 00:00:00 2001 From: IvanCraft623 <57236932+IvanCraft623@users.noreply.github.com> Date: Wed, 4 Jan 2023 15:11:55 -0500 Subject: [PATCH] Improve World::notifyNeighbourBlockUpdate() doc (#5491) --- src/world/World.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/world/World.php b/src/world/World.php index 54fd7863b..09795fd2f 100644 --- a/src/world/World.php +++ b/src/world/World.php @@ -1321,7 +1321,9 @@ class World implements ChunkManager{ /** * Notify the blocks at and around the position that the block at the position may have changed. - * This will cause onNeighbourBlockUpdate() to be called for these blocks. + * This will cause onNearbyBlockChange() to be called for these blocks. + * + * @see Block::onNearbyBlockChange() */ public function notifyNeighbourBlockUpdate(Vector3 $pos) : void{ $this->tryAddToNeighbourUpdateQueue($pos);