From 0c092a7ceba4d73d267d988b8ad9007ddca1819c Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Thu, 12 Oct 2017 16:21:23 +0100 Subject: [PATCH] reduced size of arrow bounding box as per MCPE addon data --- src/pocketmine/entity/Arrow.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pocketmine/entity/Arrow.php b/src/pocketmine/entity/Arrow.php index e676accf0..73f519b7d 100644 --- a/src/pocketmine/entity/Arrow.php +++ b/src/pocketmine/entity/Arrow.php @@ -31,8 +31,8 @@ use pocketmine\Player; class Arrow extends Projectile{ const NETWORK_ID = 80; - public $width = 0.5; - public $height = 0.5; + public $width = 0.25; + public $height = 0.25; protected $gravity = 0.05; protected $drag = 0.01;