Revert "Fixed falling blocks glitching when spawned"

This reverts commit 827ee5d4f9b080bbe36b3ec74d423357e6e32474.

can't ever seem to get falling blocks right... should I blame mojang?
This commit is contained in:
Dylan K. Taylor 2017-09-29 14:15:30 +01:00
parent e6cecabf3f
commit a06ff3d96b

View File

@ -141,7 +141,7 @@ class FallingSand extends Entity{
$pk = new AddEntityPacket();
$pk->type = FallingSand::NETWORK_ID;
$pk->entityRuntimeId = $this->getId();
$pk->position = $this->getOffsetPosition($this);
$pk->position = $this->asVector3();
$pk->motion = $this->getMotion();
$pk->yaw = $this->yaw;
$pk->pitch = $this->pitch;