diff --git a/src/pocketmine/entity/Entity.php b/src/pocketmine/entity/Entity.php index b100073ac..572f7b6d6 100644 --- a/src/pocketmine/entity/Entity.php +++ b/src/pocketmine/entity/Entity.php @@ -779,10 +779,10 @@ abstract class Entity extends Position implements Metadatable{ $this->motionZ = 0; } - //$this->boundingBox->addCoord($dx, $dy, $dz); - //$this->x += $dx; - //$this->y += $dy; - //$this->z += $dz; + $this->boundingBox->addCoord($dx, $dy, $dz); + $this->x += $dx; + $this->y += $dy; + $this->z += $dz; $cx = $this->x - $ox; $cy = $this->y - $oy;