From e5f5fe80f90602f03f039b2e09c4014b1ba42b88 Mon Sep 17 00:00:00 2001 From: zSALLAZAR <59490940+zSALLAZAR@users.noreply.github.com> Date: Wed, 23 Nov 2022 14:29:23 +0100 Subject: [PATCH] BlockGrowEvent: Remove unnecessary Cancellable implementation (#5359) this is already implemented by BaseBlockChangeEvent --- src/event/block/BlockGrowEvent.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/event/block/BlockGrowEvent.php b/src/event/block/BlockGrowEvent.php index 37fe2477a..6a2239a14 100644 --- a/src/event/block/BlockGrowEvent.php +++ b/src/event/block/BlockGrowEvent.php @@ -23,11 +23,9 @@ declare(strict_types=1); namespace pocketmine\event\block; -use pocketmine\event\Cancellable; - /** * Called when plants or crops grow. */ -class BlockGrowEvent extends BaseBlockChangeEvent implements Cancellable{ +class BlockGrowEvent extends BaseBlockChangeEvent{ }