From 31ecdfbe0a9d248c12825da59c94fff73e877548 Mon Sep 17 00:00:00 2001 From: Sebastian Hartte Date: Fri, 11 Sep 2020 18:04:17 +0200 Subject: [PATCH] Use the correct method to update an entities position forcefully. --- src/main/java/appeng/parts/automation/FormationPlanePart.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/appeng/parts/automation/FormationPlanePart.java b/src/main/java/appeng/parts/automation/FormationPlanePart.java index 6114e30f3..56cf31d46 100644 --- a/src/main/java/appeng/parts/automation/FormationPlanePart.java +++ b/src/main/java/appeng/parts/automation/FormationPlanePart.java @@ -330,7 +330,7 @@ public class FormationPlanePart extends AbstractFormationPlanePart final double absoluteZ = centerZ + offsetZ; // Set to correct position and slow the motion down a bit - entity.setPos(absoluteX, absoluteY, absoluteZ); + entity.updatePosition(absoluteX, absoluteY, absoluteZ); entity.setVelocity(side.xOffset * .1, side.yOffset * 0.1, side.zOffset * 0.1); // Try to spawn it and destroy it in case it's not possible