Merge branch 'release/3.3'

This commit is contained in:
Dylan K. Taylor
2018-09-08 14:30:16 +01:00
10 changed files with 50 additions and 61 deletions

View File

@ -74,7 +74,6 @@ abstract class Projectile extends Entity{
$this->setMaxHealth(1);
$this->setHealth(1);
$this->age = $nbt->getShort("Age", $this->age);
$this->damage = $nbt->getDouble("damage", $this->damage);
do{
@ -144,7 +143,6 @@ abstract class Projectile extends Entity{
public function saveNBT() : CompoundTag{
$nbt = parent::saveNBT();
$nbt->setShort("Age", $this->age);
$nbt->setDouble("damage", $this->damage);
if($this->blockHit !== null){