EnderPearl: fixed max stack size

This commit is contained in:
Dylan K. Taylor 2018-03-09 19:19:21 +00:00
parent 31106bc227
commit b130374e46

View File

@ -28,6 +28,10 @@ class EnderPearl extends ProjectileItem{
parent::__construct(self::ENDER_PEARL, $meta, "Ender Pearl");
}
public function getMaxStackSize() : int{
return 16;
}
public function getProjectileEntityType() : string{
return "ThrownEnderpearl";
}