diff --git a/src/pocketmine/event/Event.php b/src/pocketmine/event/Event.php index a481fa85f..965f18a51 100644 --- a/src/pocketmine/event/Event.php +++ b/src/pocketmine/event/Event.php @@ -92,10 +92,6 @@ abstract class Event{ $currentList = $handlerList; while($currentList !== null){ foreach($currentList->getListenersByPriority($priority) as $registration){ - if(!$registration->getPlugin()->isEnabled()){ - continue; - } - $registration->callEvent($this); }