diff --git a/src/pocketmine/event/block/BlockBreakEvent.php b/src/pocketmine/event/block/BlockBreakEvent.php index 64113b7b8..2c4c14257 100644 --- a/src/pocketmine/event/block/BlockBreakEvent.php +++ b/src/pocketmine/event/block/BlockBreakEvent.php @@ -28,8 +28,6 @@ use pocketmine\Player; class BlockBreakEvent extends BlockEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var \pocketmine\Player */ protected $player; diff --git a/src/pocketmine/event/block/BlockFormEvent.php b/src/pocketmine/event/block/BlockFormEvent.php index e21c9db60..c757b97d2 100644 --- a/src/pocketmine/event/block/BlockFormEvent.php +++ b/src/pocketmine/event/block/BlockFormEvent.php @@ -26,8 +26,6 @@ use pocketmine\event\Cancellable; class BlockFormEvent extends BlockGrowEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; public function __construct(Block $block, Block $newState){ parent::__construct($block, $newState); diff --git a/src/pocketmine/event/block/BlockGrowEvent.php b/src/pocketmine/event/block/BlockGrowEvent.php index c4c8b9bb2..cb2c739a4 100644 --- a/src/pocketmine/event/block/BlockGrowEvent.php +++ b/src/pocketmine/event/block/BlockGrowEvent.php @@ -26,8 +26,6 @@ use pocketmine\event\Cancellable; class BlockGrowEvent extends BlockEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var Block */ private $newState; diff --git a/src/pocketmine/event/block/BlockPlaceEvent.php b/src/pocketmine/event/block/BlockPlaceEvent.php index d3799f1aa..c57755e1c 100644 --- a/src/pocketmine/event/block/BlockPlaceEvent.php +++ b/src/pocketmine/event/block/BlockPlaceEvent.php @@ -31,8 +31,6 @@ use pocketmine\Player; */ class BlockPlaceEvent extends BlockEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var \pocketmine\Player */ protected $player; diff --git a/src/pocketmine/event/block/BlockSpreadEvent.php b/src/pocketmine/event/block/BlockSpreadEvent.php index eb2794047..d5344d5b9 100644 --- a/src/pocketmine/event/block/BlockSpreadEvent.php +++ b/src/pocketmine/event/block/BlockSpreadEvent.php @@ -26,8 +26,6 @@ use pocketmine\event\Cancellable; class BlockSpreadEvent extends BlockFormEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var Block */ private $source; diff --git a/src/pocketmine/event/block/BlockUpdateEvent.php b/src/pocketmine/event/block/BlockUpdateEvent.php index a3c8ef7f6..a1d53185e 100644 --- a/src/pocketmine/event/block/BlockUpdateEvent.php +++ b/src/pocketmine/event/block/BlockUpdateEvent.php @@ -28,7 +28,5 @@ use pocketmine\event\Cancellable; */ class BlockUpdateEvent extends BlockEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; } \ No newline at end of file diff --git a/src/pocketmine/event/block/LeavesDecayEvent.php b/src/pocketmine/event/block/LeavesDecayEvent.php index 594bc041d..9da0281da 100644 --- a/src/pocketmine/event/block/LeavesDecayEvent.php +++ b/src/pocketmine/event/block/LeavesDecayEvent.php @@ -26,8 +26,6 @@ use pocketmine\event\Cancellable; class LeavesDecayEvent extends BlockEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; public function __construct(Block $block){ parent::__construct($block); diff --git a/src/pocketmine/event/block/SignChangeEvent.php b/src/pocketmine/event/block/SignChangeEvent.php index 5145178ee..0ca3deb6a 100644 --- a/src/pocketmine/event/block/SignChangeEvent.php +++ b/src/pocketmine/event/block/SignChangeEvent.php @@ -30,8 +30,6 @@ use pocketmine\Player; */ class SignChangeEvent extends BlockEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var \pocketmine\Player */ private $player; diff --git a/src/pocketmine/event/entity/EntityArmorChangeEvent.php b/src/pocketmine/event/entity/EntityArmorChangeEvent.php index 89db05d03..a5b5d0ba0 100644 --- a/src/pocketmine/event/entity/EntityArmorChangeEvent.php +++ b/src/pocketmine/event/entity/EntityArmorChangeEvent.php @@ -28,8 +28,6 @@ use pocketmine\item\Item; class EntityArmorChangeEvent extends EntityEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; private $oldItem; private $newItem; diff --git a/src/pocketmine/event/entity/EntityBlockChangeEvent.php b/src/pocketmine/event/entity/EntityBlockChangeEvent.php index 8784ad3dc..3d19301d0 100644 --- a/src/pocketmine/event/entity/EntityBlockChangeEvent.php +++ b/src/pocketmine/event/entity/EntityBlockChangeEvent.php @@ -30,8 +30,6 @@ use pocketmine\event\Cancellable; */ class EntityBlockChangeEvent extends EntityEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; private $from; private $to; diff --git a/src/pocketmine/event/entity/EntityCombustByBlockEvent.php b/src/pocketmine/event/entity/EntityCombustByBlockEvent.php index e1488df47..614d6128e 100644 --- a/src/pocketmine/event/entity/EntityCombustByBlockEvent.php +++ b/src/pocketmine/event/entity/EntityCombustByBlockEvent.php @@ -25,8 +25,6 @@ use pocketmine\block\Block; use pocketmine\entity\Entity; class EntityCombustByBlockEvent extends EntityCombustEvent{ - public static $eventPool = []; - public static $nextEvent = 0; protected $combuster; diff --git a/src/pocketmine/event/entity/EntityCombustByEntityEvent.php b/src/pocketmine/event/entity/EntityCombustByEntityEvent.php index a8801cb8c..e72a5e865 100644 --- a/src/pocketmine/event/entity/EntityCombustByEntityEvent.php +++ b/src/pocketmine/event/entity/EntityCombustByEntityEvent.php @@ -24,8 +24,6 @@ namespace pocketmine\event\entity; use pocketmine\entity\Entity; class EntityCombustByEntityEvent extends EntityCombustEvent{ - public static $eventPool = []; - public static $nextEvent = 0; protected $combuster; diff --git a/src/pocketmine/event/entity/EntityCombustEvent.php b/src/pocketmine/event/entity/EntityCombustEvent.php index 9cf690df0..0bc0d6c27 100644 --- a/src/pocketmine/event/entity/EntityCombustEvent.php +++ b/src/pocketmine/event/entity/EntityCombustEvent.php @@ -26,8 +26,6 @@ use pocketmine\event\Cancellable; class EntityCombustEvent extends EntityEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; protected $duration; diff --git a/src/pocketmine/event/entity/EntityDamageByBlockEvent.php b/src/pocketmine/event/entity/EntityDamageByBlockEvent.php index ad0060397..bb4075d76 100644 --- a/src/pocketmine/event/entity/EntityDamageByBlockEvent.php +++ b/src/pocketmine/event/entity/EntityDamageByBlockEvent.php @@ -25,8 +25,6 @@ use pocketmine\block\Block; use pocketmine\entity\Entity; class EntityDamageByBlockEvent extends EntityDamageEvent{ - public static $eventPool = []; - public static $nextEvent = 0; /** @var Block */ private $damager; diff --git a/src/pocketmine/event/entity/EntityDamageByChildEntityEvent.php b/src/pocketmine/event/entity/EntityDamageByChildEntityEvent.php index 885010eb1..cabeb091a 100644 --- a/src/pocketmine/event/entity/EntityDamageByChildEntityEvent.php +++ b/src/pocketmine/event/entity/EntityDamageByChildEntityEvent.php @@ -24,8 +24,6 @@ namespace pocketmine\event\entity; use pocketmine\entity\Entity; class EntityDamageByChildEntityEvent extends EntityDamageByEntityEvent{ - public static $eventPool = []; - public static $nextEvent = 0; /** @var Entity */ private $childEntity; diff --git a/src/pocketmine/event/entity/EntityDamageByEntityEvent.php b/src/pocketmine/event/entity/EntityDamageByEntityEvent.php index 6037acc4c..6d27ff289 100644 --- a/src/pocketmine/event/entity/EntityDamageByEntityEvent.php +++ b/src/pocketmine/event/entity/EntityDamageByEntityEvent.php @@ -24,8 +24,6 @@ namespace pocketmine\event\entity; use pocketmine\entity\Entity; class EntityDamageByEntityEvent extends EntityDamageEvent{ - public static $eventPool = []; - public static $nextEvent = 0; /** @var Entity */ private $damager; diff --git a/src/pocketmine/event/entity/EntityDamageEvent.php b/src/pocketmine/event/entity/EntityDamageEvent.php index 7467a569c..79d689b9e 100644 --- a/src/pocketmine/event/entity/EntityDamageEvent.php +++ b/src/pocketmine/event/entity/EntityDamageEvent.php @@ -26,8 +26,6 @@ use pocketmine\event\Cancellable; class EntityDamageEvent extends EntityEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; const MODIFIER_BASE = 0; const MODIFIER_ARMOR = 1; diff --git a/src/pocketmine/event/entity/EntityDeathEvent.php b/src/pocketmine/event/entity/EntityDeathEvent.php index 3645ddf31..51a5ed54e 100644 --- a/src/pocketmine/event/entity/EntityDeathEvent.php +++ b/src/pocketmine/event/entity/EntityDeathEvent.php @@ -26,8 +26,6 @@ use pocketmine\item\Item; class EntityDeathEvent extends EntityEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var Item[] */ private $drops = []; diff --git a/src/pocketmine/event/entity/EntityDespawnEvent.php b/src/pocketmine/event/entity/EntityDespawnEvent.php index c769d731a..54fa93b7b 100644 --- a/src/pocketmine/event/entity/EntityDespawnEvent.php +++ b/src/pocketmine/event/entity/EntityDespawnEvent.php @@ -33,8 +33,6 @@ use pocketmine\entity\Vehicle; */ class EntityDespawnEvent extends EntityEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; private $entityType; diff --git a/src/pocketmine/event/entity/EntityExplodeEvent.php b/src/pocketmine/event/entity/EntityExplodeEvent.php index 367978b38..46476a6eb 100644 --- a/src/pocketmine/event/entity/EntityExplodeEvent.php +++ b/src/pocketmine/event/entity/EntityExplodeEvent.php @@ -31,8 +31,6 @@ use pocketmine\level\Position; */ class EntityExplodeEvent extends EntityEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var Position */ protected $position; diff --git a/src/pocketmine/event/entity/EntityInventoryChangeEvent.php b/src/pocketmine/event/entity/EntityInventoryChangeEvent.php index f98ac426f..ca50c001c 100644 --- a/src/pocketmine/event/entity/EntityInventoryChangeEvent.php +++ b/src/pocketmine/event/entity/EntityInventoryChangeEvent.php @@ -28,8 +28,6 @@ use pocketmine\item\Item; class EntityInventoryChangeEvent extends EntityEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; private $oldItem; private $newItem; diff --git a/src/pocketmine/event/entity/EntityLevelChangeEvent.php b/src/pocketmine/event/entity/EntityLevelChangeEvent.php index df1a0c671..fcf8e4291 100644 --- a/src/pocketmine/event/entity/EntityLevelChangeEvent.php +++ b/src/pocketmine/event/entity/EntityLevelChangeEvent.php @@ -28,8 +28,6 @@ use pocketmine\level\Level; class EntityLevelChangeEvent extends EntityEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; private $originLevel; private $targetLevel; diff --git a/src/pocketmine/event/entity/EntityMotionEvent.php b/src/pocketmine/event/entity/EntityMotionEvent.php index 560bf747c..6c0ea6b75 100644 --- a/src/pocketmine/event/entity/EntityMotionEvent.php +++ b/src/pocketmine/event/entity/EntityMotionEvent.php @@ -28,8 +28,6 @@ use pocketmine\math\Vector3; class EntityMotionEvent extends EntityEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; private $mot; diff --git a/src/pocketmine/event/entity/EntityMoveEvent.php b/src/pocketmine/event/entity/EntityMoveEvent.php index 378110828..099c9a7a4 100644 --- a/src/pocketmine/event/entity/EntityMoveEvent.php +++ b/src/pocketmine/event/entity/EntityMoveEvent.php @@ -31,8 +31,6 @@ use pocketmine\math\Vector3; */ class EntityMoveEvent extends EntityEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var \pocketmine\math\Vector3 */ private $pos; diff --git a/src/pocketmine/event/entity/EntityRegainHealthEvent.php b/src/pocketmine/event/entity/EntityRegainHealthEvent.php index 37c47d3e3..4be1d27da 100644 --- a/src/pocketmine/event/entity/EntityRegainHealthEvent.php +++ b/src/pocketmine/event/entity/EntityRegainHealthEvent.php @@ -26,8 +26,6 @@ use pocketmine\event\Cancellable; class EntityRegainHealthEvent extends EntityEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; const CAUSE_REGEN = 0; const CAUSE_EATING = 1; diff --git a/src/pocketmine/event/entity/EntityShootBowEvent.php b/src/pocketmine/event/entity/EntityShootBowEvent.php index 324b92880..7e973976f 100644 --- a/src/pocketmine/event/entity/EntityShootBowEvent.php +++ b/src/pocketmine/event/entity/EntityShootBowEvent.php @@ -29,8 +29,6 @@ use pocketmine\item\Item; class EntityShootBowEvent extends EntityEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var Item */ private $bow; diff --git a/src/pocketmine/event/entity/EntitySpawnEvent.php b/src/pocketmine/event/entity/EntitySpawnEvent.php index a010d71cf..47fb7759a 100644 --- a/src/pocketmine/event/entity/EntitySpawnEvent.php +++ b/src/pocketmine/event/entity/EntitySpawnEvent.php @@ -33,8 +33,6 @@ use pocketmine\entity\Vehicle; */ class EntitySpawnEvent extends EntityEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; private $entityType; diff --git a/src/pocketmine/event/entity/EntityTeleportEvent.php b/src/pocketmine/event/entity/EntityTeleportEvent.php index e4ac41475..230e0e3dc 100644 --- a/src/pocketmine/event/entity/EntityTeleportEvent.php +++ b/src/pocketmine/event/entity/EntityTeleportEvent.php @@ -28,8 +28,6 @@ use pocketmine\level\Position; class EntityTeleportEvent extends EntityEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var Position */ private $from; diff --git a/src/pocketmine/event/entity/ExplosionPrimeEvent.php b/src/pocketmine/event/entity/ExplosionPrimeEvent.php index b05ce1991..d0dae74b2 100644 --- a/src/pocketmine/event/entity/ExplosionPrimeEvent.php +++ b/src/pocketmine/event/entity/ExplosionPrimeEvent.php @@ -29,8 +29,6 @@ use pocketmine\event\Cancellable; */ class ExplosionPrimeEvent extends EntityEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; protected $force; private $blockBreaking; diff --git a/src/pocketmine/event/entity/ItemDespawnEvent.php b/src/pocketmine/event/entity/ItemDespawnEvent.php index f1998688e..388577c18 100644 --- a/src/pocketmine/event/entity/ItemDespawnEvent.php +++ b/src/pocketmine/event/entity/ItemDespawnEvent.php @@ -26,8 +26,6 @@ use pocketmine\event\Cancellable; class ItemDespawnEvent extends EntityEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** * @param Item $item diff --git a/src/pocketmine/event/entity/ItemSpawnEvent.php b/src/pocketmine/event/entity/ItemSpawnEvent.php index 02aa93f91..77459c615 100644 --- a/src/pocketmine/event/entity/ItemSpawnEvent.php +++ b/src/pocketmine/event/entity/ItemSpawnEvent.php @@ -25,8 +25,6 @@ use pocketmine\entity\Item; class ItemSpawnEvent extends EntityEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** * @param Item $item diff --git a/src/pocketmine/event/entity/ProjectileHitEvent.php b/src/pocketmine/event/entity/ProjectileHitEvent.php index 51e514d33..1da3406b3 100644 --- a/src/pocketmine/event/entity/ProjectileHitEvent.php +++ b/src/pocketmine/event/entity/ProjectileHitEvent.php @@ -25,8 +25,6 @@ use pocketmine\entity\Projectile; class ProjectileHitEvent extends EntityEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** * @param Projectile $entity diff --git a/src/pocketmine/event/entity/ProjectileLaunchEvent.php b/src/pocketmine/event/entity/ProjectileLaunchEvent.php index cb945ab10..f2104b5a8 100644 --- a/src/pocketmine/event/entity/ProjectileLaunchEvent.php +++ b/src/pocketmine/event/entity/ProjectileLaunchEvent.php @@ -26,8 +26,6 @@ use pocketmine\event\Cancellable; class ProjectileLaunchEvent extends EntityEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** * @param Projectile $entity diff --git a/src/pocketmine/event/inventory/CraftItemEvent.php b/src/pocketmine/event/inventory/CraftItemEvent.php index d225f24f8..96eac6d43 100644 --- a/src/pocketmine/event/inventory/CraftItemEvent.php +++ b/src/pocketmine/event/inventory/CraftItemEvent.php @@ -28,8 +28,6 @@ use pocketmine\inventory\Recipe; class CraftItemEvent extends Event implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var CraftingTransactionGroup */ private $ts; diff --git a/src/pocketmine/event/inventory/FurnaceBurnEvent.php b/src/pocketmine/event/inventory/FurnaceBurnEvent.php index 66e7b741a..3294d9ed1 100644 --- a/src/pocketmine/event/inventory/FurnaceBurnEvent.php +++ b/src/pocketmine/event/inventory/FurnaceBurnEvent.php @@ -28,8 +28,6 @@ use pocketmine\tile\Furnace; class FurnaceBurnEvent extends BlockEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; private $furnace; private $fuel; diff --git a/src/pocketmine/event/inventory/FurnaceSmeltEvent.php b/src/pocketmine/event/inventory/FurnaceSmeltEvent.php index 41ff9eaac..cf65d418f 100644 --- a/src/pocketmine/event/inventory/FurnaceSmeltEvent.php +++ b/src/pocketmine/event/inventory/FurnaceSmeltEvent.php @@ -28,8 +28,6 @@ use pocketmine\tile\Furnace; class FurnaceSmeltEvent extends BlockEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; private $furnace; private $source; diff --git a/src/pocketmine/event/inventory/InventoryCloseEvent.php b/src/pocketmine/event/inventory/InventoryCloseEvent.php index 257fd4ab9..843b4df9e 100644 --- a/src/pocketmine/event/inventory/InventoryCloseEvent.php +++ b/src/pocketmine/event/inventory/InventoryCloseEvent.php @@ -26,8 +26,6 @@ use pocketmine\Player; class InventoryCloseEvent extends InventoryEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var Player */ private $who; diff --git a/src/pocketmine/event/inventory/InventoryOpenEvent.php b/src/pocketmine/event/inventory/InventoryOpenEvent.php index ad68d5572..8d400cc90 100644 --- a/src/pocketmine/event/inventory/InventoryOpenEvent.php +++ b/src/pocketmine/event/inventory/InventoryOpenEvent.php @@ -27,8 +27,6 @@ use pocketmine\Player; class InventoryOpenEvent extends InventoryEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var Player */ private $who; diff --git a/src/pocketmine/event/inventory/InventoryPickupArrowEvent.php b/src/pocketmine/event/inventory/InventoryPickupArrowEvent.php index 8c600c1dc..288bc0a59 100644 --- a/src/pocketmine/event/inventory/InventoryPickupArrowEvent.php +++ b/src/pocketmine/event/inventory/InventoryPickupArrowEvent.php @@ -27,8 +27,6 @@ use pocketmine\inventory\Inventory; class InventoryPickupArrowEvent extends InventoryEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var Arrow */ private $arrow; diff --git a/src/pocketmine/event/inventory/InventoryPickupItemEvent.php b/src/pocketmine/event/inventory/InventoryPickupItemEvent.php index ca265cf38..18b9d2cf2 100644 --- a/src/pocketmine/event/inventory/InventoryPickupItemEvent.php +++ b/src/pocketmine/event/inventory/InventoryPickupItemEvent.php @@ -27,8 +27,6 @@ use pocketmine\inventory\Inventory; class InventoryPickupItemEvent extends InventoryEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var Item */ private $item; diff --git a/src/pocketmine/event/inventory/InventoryTransactionEvent.php b/src/pocketmine/event/inventory/InventoryTransactionEvent.php index 5c8216f45..53a4c4e5f 100644 --- a/src/pocketmine/event/inventory/InventoryTransactionEvent.php +++ b/src/pocketmine/event/inventory/InventoryTransactionEvent.php @@ -31,8 +31,6 @@ use pocketmine\inventory\TransactionGroup; */ class InventoryTransactionEvent extends Event implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var TransactionGroup */ private $ts; diff --git a/src/pocketmine/event/level/ChunkLoadEvent.php b/src/pocketmine/event/level/ChunkLoadEvent.php index 6631d52ec..cfe99f8bc 100644 --- a/src/pocketmine/event/level/ChunkLoadEvent.php +++ b/src/pocketmine/event/level/ChunkLoadEvent.php @@ -28,8 +28,6 @@ use pocketmine\level\format\FullChunk; */ class ChunkLoadEvent extends ChunkEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; private $newChunk; diff --git a/src/pocketmine/event/level/ChunkPopulateEvent.php b/src/pocketmine/event/level/ChunkPopulateEvent.php index 943bb1983..b3f2aec8c 100644 --- a/src/pocketmine/event/level/ChunkPopulateEvent.php +++ b/src/pocketmine/event/level/ChunkPopulateEvent.php @@ -26,6 +26,4 @@ namespace pocketmine\event\level; */ class ChunkPopulateEvent extends ChunkEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; } \ No newline at end of file diff --git a/src/pocketmine/event/level/ChunkUnloadEvent.php b/src/pocketmine/event/level/ChunkUnloadEvent.php index f16294569..257865a5f 100644 --- a/src/pocketmine/event/level/ChunkUnloadEvent.php +++ b/src/pocketmine/event/level/ChunkUnloadEvent.php @@ -28,6 +28,4 @@ use pocketmine\event\Cancellable; */ class ChunkUnloadEvent extends ChunkEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; } \ No newline at end of file diff --git a/src/pocketmine/event/level/LevelInitEvent.php b/src/pocketmine/event/level/LevelInitEvent.php index fad150f2a..6e18f17f0 100644 --- a/src/pocketmine/event/level/LevelInitEvent.php +++ b/src/pocketmine/event/level/LevelInitEvent.php @@ -26,6 +26,4 @@ namespace pocketmine\event\level; */ class LevelInitEvent extends LevelEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; } \ No newline at end of file diff --git a/src/pocketmine/event/level/LevelLoadEvent.php b/src/pocketmine/event/level/LevelLoadEvent.php index 28ebbabdd..84d300f13 100644 --- a/src/pocketmine/event/level/LevelLoadEvent.php +++ b/src/pocketmine/event/level/LevelLoadEvent.php @@ -26,6 +26,4 @@ namespace pocketmine\event\level; */ class LevelLoadEvent extends LevelEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; } \ No newline at end of file diff --git a/src/pocketmine/event/level/LevelSaveEvent.php b/src/pocketmine/event/level/LevelSaveEvent.php index 211d3ca98..0fa652d6e 100644 --- a/src/pocketmine/event/level/LevelSaveEvent.php +++ b/src/pocketmine/event/level/LevelSaveEvent.php @@ -26,6 +26,4 @@ namespace pocketmine\event\level; */ class LevelSaveEvent extends LevelEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; } \ No newline at end of file diff --git a/src/pocketmine/event/level/LevelUnloadEvent.php b/src/pocketmine/event/level/LevelUnloadEvent.php index 1b42c0f97..412ca7e97 100644 --- a/src/pocketmine/event/level/LevelUnloadEvent.php +++ b/src/pocketmine/event/level/LevelUnloadEvent.php @@ -28,6 +28,4 @@ use pocketmine\event\Cancellable; */ class LevelUnloadEvent extends LevelEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; } \ No newline at end of file diff --git a/src/pocketmine/event/level/SpawnChangeEvent.php b/src/pocketmine/event/level/SpawnChangeEvent.php index 6d4855597..cc0e82e90 100644 --- a/src/pocketmine/event/level/SpawnChangeEvent.php +++ b/src/pocketmine/event/level/SpawnChangeEvent.php @@ -30,8 +30,6 @@ use pocketmine\level\Position; */ class SpawnChangeEvent extends LevelEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var Position */ private $previousSpawn; diff --git a/src/pocketmine/event/player/PlayerAchievementAwardedEvent.php b/src/pocketmine/event/player/PlayerAchievementAwardedEvent.php index c2d62d787..671f391fc 100644 --- a/src/pocketmine/event/player/PlayerAchievementAwardedEvent.php +++ b/src/pocketmine/event/player/PlayerAchievementAwardedEvent.php @@ -29,8 +29,6 @@ use pocketmine\Player; */ class PlayerAchievementAwardedEvent extends PlayerEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var string */ protected $achievement; diff --git a/src/pocketmine/event/player/PlayerAnimationEvent.php b/src/pocketmine/event/player/PlayerAnimationEvent.php index 8cd78e6b2..5c979cf60 100644 --- a/src/pocketmine/event/player/PlayerAnimationEvent.php +++ b/src/pocketmine/event/player/PlayerAnimationEvent.php @@ -29,8 +29,6 @@ use pocketmine\Player; */ class PlayerAnimationEvent extends PlayerEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; const ARM_SWING = 1; diff --git a/src/pocketmine/event/player/PlayerBedEnterEvent.php b/src/pocketmine/event/player/PlayerBedEnterEvent.php index 7c547994e..4faf04248 100644 --- a/src/pocketmine/event/player/PlayerBedEnterEvent.php +++ b/src/pocketmine/event/player/PlayerBedEnterEvent.php @@ -27,8 +27,6 @@ use pocketmine\Player; class PlayerBedEnterEvent extends PlayerEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; private $bed; diff --git a/src/pocketmine/event/player/PlayerBedLeaveEvent.php b/src/pocketmine/event/player/PlayerBedLeaveEvent.php index ed375ddbb..80d8cb124 100644 --- a/src/pocketmine/event/player/PlayerBedLeaveEvent.php +++ b/src/pocketmine/event/player/PlayerBedLeaveEvent.php @@ -26,8 +26,6 @@ use pocketmine\Player; class PlayerBedLeaveEvent extends PlayerEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; private $bed; diff --git a/src/pocketmine/event/player/PlayerBucketEmptyEvent.php b/src/pocketmine/event/player/PlayerBucketEmptyEvent.php index cdacebdd7..3e0955c53 100644 --- a/src/pocketmine/event/player/PlayerBucketEmptyEvent.php +++ b/src/pocketmine/event/player/PlayerBucketEmptyEvent.php @@ -27,8 +27,6 @@ use pocketmine\Player; class PlayerBucketEmptyEvent extends PlayerBucketEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; public function __construct(Player $who, Block $blockClicked, $blockFace, Item $bucket, Item $itemInHand){ parent::__construct($who, $blockClicked, $blockFace, $bucket, $itemInHand); diff --git a/src/pocketmine/event/player/PlayerBucketFillEvent.php b/src/pocketmine/event/player/PlayerBucketFillEvent.php index 7324fb780..af19c7bf6 100644 --- a/src/pocketmine/event/player/PlayerBucketFillEvent.php +++ b/src/pocketmine/event/player/PlayerBucketFillEvent.php @@ -27,8 +27,6 @@ use pocketmine\Player; class PlayerBucketFillEvent extends PlayerBucketEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; public function __construct(Player $who, Block $blockClicked, $blockFace, Item $bucket, Item $itemInHand){ parent::__construct($who, $blockClicked, $blockFace, $bucket, $itemInHand); diff --git a/src/pocketmine/event/player/PlayerChatEvent.php b/src/pocketmine/event/player/PlayerChatEvent.php index edc54921a..95650070b 100644 --- a/src/pocketmine/event/player/PlayerChatEvent.php +++ b/src/pocketmine/event/player/PlayerChatEvent.php @@ -30,8 +30,6 @@ use pocketmine\Server; */ class PlayerChatEvent extends PlayerEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var string */ protected $message; diff --git a/src/pocketmine/event/player/PlayerCommandPreprocessEvent.php b/src/pocketmine/event/player/PlayerCommandPreprocessEvent.php index a2a9296a8..bd54b7797 100644 --- a/src/pocketmine/event/player/PlayerCommandPreprocessEvent.php +++ b/src/pocketmine/event/player/PlayerCommandPreprocessEvent.php @@ -34,8 +34,6 @@ use pocketmine\Player; */ class PlayerCommandPreprocessEvent extends PlayerEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var string */ protected $message; diff --git a/src/pocketmine/event/player/PlayerCreationEvent.php b/src/pocketmine/event/player/PlayerCreationEvent.php index a5948fd35..1b41cd7d4 100644 --- a/src/pocketmine/event/player/PlayerCreationEvent.php +++ b/src/pocketmine/event/player/PlayerCreationEvent.php @@ -30,8 +30,6 @@ use pocketmine\Player; */ class PlayerCreationEvent extends Event{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var SourceInterface */ private $interface; diff --git a/src/pocketmine/event/player/PlayerDeathEvent.php b/src/pocketmine/event/player/PlayerDeathEvent.php index 33623affc..a4b98c82d 100644 --- a/src/pocketmine/event/player/PlayerDeathEvent.php +++ b/src/pocketmine/event/player/PlayerDeathEvent.php @@ -27,8 +27,6 @@ use pocketmine\Player; class PlayerDeathEvent extends EntityDeathEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; private $deathMessage; private $keepInventory = false; diff --git a/src/pocketmine/event/player/PlayerDropItemEvent.php b/src/pocketmine/event/player/PlayerDropItemEvent.php index b389db8fe..0f5cbdd73 100644 --- a/src/pocketmine/event/player/PlayerDropItemEvent.php +++ b/src/pocketmine/event/player/PlayerDropItemEvent.php @@ -30,8 +30,6 @@ use pocketmine\Player; */ class PlayerDropItemEvent extends PlayerEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var Item */ private $drop; diff --git a/src/pocketmine/event/player/PlayerGameModeChangeEvent.php b/src/pocketmine/event/player/PlayerGameModeChangeEvent.php index 6da670adc..dedce2fc9 100644 --- a/src/pocketmine/event/player/PlayerGameModeChangeEvent.php +++ b/src/pocketmine/event/player/PlayerGameModeChangeEvent.php @@ -29,8 +29,6 @@ use pocketmine\Player; */ class PlayerGameModeChangeEvent extends PlayerEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var int */ protected $gamemode; diff --git a/src/pocketmine/event/player/PlayerInteractEvent.php b/src/pocketmine/event/player/PlayerInteractEvent.php index b5b3f9bfe..20a7c2f6a 100644 --- a/src/pocketmine/event/player/PlayerInteractEvent.php +++ b/src/pocketmine/event/player/PlayerInteractEvent.php @@ -31,8 +31,6 @@ use pocketmine\Player; */ class PlayerInteractEvent extends PlayerEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** * @var \pocketmine\block\Block; diff --git a/src/pocketmine/event/player/PlayerItemConsumeEvent.php b/src/pocketmine/event/player/PlayerItemConsumeEvent.php index 96e7462cc..b306230f5 100644 --- a/src/pocketmine/event/player/PlayerItemConsumeEvent.php +++ b/src/pocketmine/event/player/PlayerItemConsumeEvent.php @@ -30,8 +30,6 @@ use pocketmine\Player; */ class PlayerItemConsumeEvent extends PlayerEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var Item */ private $item; diff --git a/src/pocketmine/event/player/PlayerItemHeldEvent.php b/src/pocketmine/event/player/PlayerItemHeldEvent.php index 0f7008792..fb359ecb5 100644 --- a/src/pocketmine/event/player/PlayerItemHeldEvent.php +++ b/src/pocketmine/event/player/PlayerItemHeldEvent.php @@ -28,8 +28,6 @@ use pocketmine\Player; class PlayerItemHeldEvent extends PlayerEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; private $item; private $slot; diff --git a/src/pocketmine/event/player/PlayerJoinEvent.php b/src/pocketmine/event/player/PlayerJoinEvent.php index 86169590a..c684f442c 100644 --- a/src/pocketmine/event/player/PlayerJoinEvent.php +++ b/src/pocketmine/event/player/PlayerJoinEvent.php @@ -28,8 +28,6 @@ use pocketmine\Player; */ class PlayerJoinEvent extends PlayerEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var string */ protected $joinMessage; diff --git a/src/pocketmine/event/player/PlayerKickEvent.php b/src/pocketmine/event/player/PlayerKickEvent.php index c0eb9dae9..27f612fd3 100644 --- a/src/pocketmine/event/player/PlayerKickEvent.php +++ b/src/pocketmine/event/player/PlayerKickEvent.php @@ -29,8 +29,6 @@ use pocketmine\Player; */ class PlayerKickEvent extends PlayerEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var string */ protected $quitMessage; diff --git a/src/pocketmine/event/player/PlayerLoginEvent.php b/src/pocketmine/event/player/PlayerLoginEvent.php index c59ebc7d4..6d05df41a 100644 --- a/src/pocketmine/event/player/PlayerLoginEvent.php +++ b/src/pocketmine/event/player/PlayerLoginEvent.php @@ -29,8 +29,6 @@ use pocketmine\Player; */ class PlayerLoginEvent extends PlayerEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var string */ protected $kickMessage; diff --git a/src/pocketmine/event/player/PlayerMoveEvent.php b/src/pocketmine/event/player/PlayerMoveEvent.php index b8f8da7f9..bf29dd1c0 100644 --- a/src/pocketmine/event/player/PlayerMoveEvent.php +++ b/src/pocketmine/event/player/PlayerMoveEvent.php @@ -27,8 +27,6 @@ use pocketmine\Player; class PlayerMoveEvent extends PlayerEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; private $from; private $to; diff --git a/src/pocketmine/event/player/PlayerPreLoginEvent.php b/src/pocketmine/event/player/PlayerPreLoginEvent.php index c4c0072fe..b3df86a1f 100644 --- a/src/pocketmine/event/player/PlayerPreLoginEvent.php +++ b/src/pocketmine/event/player/PlayerPreLoginEvent.php @@ -29,8 +29,6 @@ use pocketmine\Player; */ class PlayerPreLoginEvent extends PlayerEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var string */ protected $kickMessage; diff --git a/src/pocketmine/event/player/PlayerQuitEvent.php b/src/pocketmine/event/player/PlayerQuitEvent.php index a5fb1c814..713426960 100644 --- a/src/pocketmine/event/player/PlayerQuitEvent.php +++ b/src/pocketmine/event/player/PlayerQuitEvent.php @@ -28,8 +28,6 @@ use pocketmine\Player; */ class PlayerQuitEvent extends PlayerEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var string */ protected $quitMessage; diff --git a/src/pocketmine/event/player/PlayerRespawnEvent.php b/src/pocketmine/event/player/PlayerRespawnEvent.php index 25146804b..64cc2b6b0 100644 --- a/src/pocketmine/event/player/PlayerRespawnEvent.php +++ b/src/pocketmine/event/player/PlayerRespawnEvent.php @@ -29,8 +29,6 @@ use pocketmine\Player; */ class PlayerRespawnEvent extends PlayerEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var Position */ protected $position; diff --git a/src/pocketmine/event/plugin/PluginDisableEvent.php b/src/pocketmine/event/plugin/PluginDisableEvent.php index 1d85e9093..6fcb68295 100644 --- a/src/pocketmine/event/plugin/PluginDisableEvent.php +++ b/src/pocketmine/event/plugin/PluginDisableEvent.php @@ -27,8 +27,6 @@ use pocketmine\plugin\Plugin; class PluginDisableEvent extends PluginEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** * @param Plugin $plugin diff --git a/src/pocketmine/event/plugin/PluginEnableEvent.php b/src/pocketmine/event/plugin/PluginEnableEvent.php index 94fe2207b..2e5bec73d 100644 --- a/src/pocketmine/event/plugin/PluginEnableEvent.php +++ b/src/pocketmine/event/plugin/PluginEnableEvent.php @@ -27,8 +27,6 @@ use pocketmine\plugin\Plugin; class PluginEnableEvent extends PluginEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** * @param Plugin $plugin diff --git a/src/pocketmine/event/server/DataPacketReceiveEvent.php b/src/pocketmine/event/server/DataPacketReceiveEvent.php index 8bba901c2..b8bc6392a 100644 --- a/src/pocketmine/event/server/DataPacketReceiveEvent.php +++ b/src/pocketmine/event/server/DataPacketReceiveEvent.php @@ -28,8 +28,6 @@ use pocketmine\Player; class DataPacketReceiveEvent extends ServerEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; private $packet; private $player; diff --git a/src/pocketmine/event/server/DataPacketSendEvent.php b/src/pocketmine/event/server/DataPacketSendEvent.php index 88afb2d45..eefaa0ee7 100644 --- a/src/pocketmine/event/server/DataPacketSendEvent.php +++ b/src/pocketmine/event/server/DataPacketSendEvent.php @@ -28,8 +28,6 @@ use pocketmine\Player; class DataPacketSendEvent extends ServerEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; private $packet; private $player; diff --git a/src/pocketmine/event/server/QueryRegenerateEvent.php b/src/pocketmine/event/server/QueryRegenerateEvent.php index 3ad1367b3..aa8c58632 100644 --- a/src/pocketmine/event/server/QueryRegenerateEvent.php +++ b/src/pocketmine/event/server/QueryRegenerateEvent.php @@ -27,8 +27,6 @@ use pocketmine\utils\Binary; class QueryRegenerateEvent extends ServerEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; const GAME_ID = "MINECRAFTPE"; diff --git a/src/pocketmine/event/server/RemoteServerCommandEvent.php b/src/pocketmine/event/server/RemoteServerCommandEvent.php index a680b1c34..412c992c8 100644 --- a/src/pocketmine/event/server/RemoteServerCommandEvent.php +++ b/src/pocketmine/event/server/RemoteServerCommandEvent.php @@ -28,8 +28,6 @@ use pocketmine\command\CommandSender; */ class RemoteServerCommandEvent extends ServerCommandEvent{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** * @param CommandSender $sender diff --git a/src/pocketmine/event/server/ServerCommandEvent.php b/src/pocketmine/event/server/ServerCommandEvent.php index d5d350b53..6a82e67d7 100644 --- a/src/pocketmine/event/server/ServerCommandEvent.php +++ b/src/pocketmine/event/server/ServerCommandEvent.php @@ -34,8 +34,6 @@ use pocketmine\event\Cancellable; */ class ServerCommandEvent extends ServerEvent implements Cancellable{ public static $handlerList = null; - public static $eventPool = []; - public static $nextEvent = 0; /** @var string */ protected $command;