BlockGrowEvent: Remove unnecessary Cancellable implementation (#5359)

this is already implemented by BaseBlockChangeEvent
This commit is contained in:
zSALLAZAR 2022-11-23 14:29:23 +01:00 committed by GitHub
parent dda8ff18b1
commit e5f5fe80f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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{
}