Attack of the remap, Part III

- Fixed Chute Particles not moving
This commit is contained in:
simibubi 2021-08-08 14:41:41 +02:00
parent 019a61c444
commit 45de01ff9e

View file

@ -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);