Fixed data sending, more particles

This commit is contained in:
Shoghi Cervantes
2015-03-18 12:11:44 +01:00
parent c00370cfbf
commit b31604a536
6 changed files with 7 additions and 81 deletions

View File

@ -48,7 +48,7 @@ class Zombie extends Monster{
$pk->z = $this->z;
$pk->yaw = $this->yaw;
$pk->pitch = $this->pitch;
$pk->metadata = $this->getData();
$pk->metadata = $this->dataProperties;
$player->dataPacket($pk);
$player->addEntityMotion($this->getId(), $this->motionX, $this->motionY, $this->motionZ);
@ -78,4 +78,4 @@ class Zombie extends Monster{
return $drops;
}
}
}