Use new Location objects instead of mutating Entity->location directly

I'm actually not a big fan of needing to recreate the whole thing just to modify the coordinates. This seems kind of stupid.
This commit is contained in:
Dylan K. Taylor
2020-09-25 18:43:49 +01:00
parent db7fb25196
commit 626680c6c1
2 changed files with 20 additions and 9 deletions

View File

@ -219,9 +219,12 @@ abstract class Projectile extends Entity{
}
}
$this->location->x = $end->x;
$this->location->y = $end->y;
$this->location->z = $end->z;
$this->location = Location::fromObject(
$end,
$this->location->world,
$this->location->yaw,
$this->location->pitch
);
$this->recalculateBoundingBox();
if($hitResult !== null){