diff --git a/src/pocketmine/block/Chest.php b/src/pocketmine/block/Chest.php index 5aed1e979..dd413e737 100644 --- a/src/pocketmine/block/Chest.php +++ b/src/pocketmine/block/Chest.php @@ -53,13 +53,14 @@ class Chest extends Transparent{ } protected function recalculateBoundingBox() : ?AxisAlignedBB{ + //these are slightly bigger than in PC return new AxisAlignedBB( - $this->x + 0.0625, + $this->x + 0.025, $this->y, - $this->z + 0.0625, - $this->x + 0.9375, - $this->y + 0.9475, - $this->z + 0.9375 + $this->z + 0.025, + $this->x + 0.975, + $this->y + 0.95, + $this->z + 0.975 ); }