From 69fa8e8db705adb9d1a45f1dac4835d03a1b83ef Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Wed, 19 May 2021 00:17:32 +0100 Subject: [PATCH] Added documentation to BlockFormEvent --- src/event/block/BlockFormEvent.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/event/block/BlockFormEvent.php b/src/event/block/BlockFormEvent.php index 7027d572a..f955319c0 100644 --- a/src/event/block/BlockFormEvent.php +++ b/src/event/block/BlockFormEvent.php @@ -23,6 +23,10 @@ declare(strict_types=1); namespace pocketmine\event\block; +/** + * Called when a new block forms, usually as the result of some action. + * This could be things like obsidian forming due to collision of lava and water. + */ class BlockFormEvent extends BaseBlockChangeEvent{ }