Super method should do just fine!

This commit is contained in:
Electroblob77
2020-04-05 15:33:40 +01:00
parent a67eb2381d
commit 525b7e13dd
@@ -17,15 +17,4 @@ public class ParticleDust extends ParticleWizardry {
this.setRBGColorF(1, 1, 1);
}
@Override
public void onUpdate(){
this.prevPosX = this.posX;
this.prevPosY = this.posY;
this.prevPosZ = this.posZ;
this.move(this.motionX, this.motionY, this.motionZ);
if(this.particleMaxAge-- <= 0){
this.setExpired();
}
}
}