Added documentation to BlockFormEvent

This commit is contained in:
Dylan K. Taylor 2021-05-19 00:17:32 +01:00
parent f8cfa191dd
commit 69fa8e8db7
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -23,6 +23,10 @@ declare(strict_types=1);
namespace pocketmine\event\block; 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{ class BlockFormEvent extends BaseBlockChangeEvent{
} }