From 45de01ff9eeda587ff6afebd9692716d1ac8f4da Mon Sep 17 00:00:00 2001 From: simibubi <31564874+simibubi@users.noreply.github.com> Date: Sun, 8 Aug 2021 14:41:41 +0200 Subject: [PATCH] Attack of the remap, Part III - Fixed Chute Particles not moving --- .../create/content/contraptions/particle/AirParticle.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/simibubi/create/content/contraptions/particle/AirParticle.java b/src/main/java/com/simibubi/create/content/contraptions/particle/AirParticle.java index 25d7d9f02..1951cdedb 100644 --- a/src/main/java/com/simibubi/create/content/contraptions/particle/AirParticle.java +++ b/src/main/java/com/simibubi/create/content/contraptions/particle/AirParticle.java @@ -77,9 +77,9 @@ public class AirParticle extends SimpleAnimatedParticle { float y = (float) (MathHelper.lerp(progress, originY, targetY) + twirl.y); float z = (float) (MathHelper.lerp(progress, originZ, targetZ) + twirl.z); - xd = x - x; - yd = y - y; - zd = z - z; + xd = x - this.x; + yd = y - this.y; + zd = z - this.z; setSpriteFromAge(sprites); this.move(this.xd, this.yd, this.zd);