Skip to content

Commit

Permalink
Update MesogleaBubbleParticle.java
Browse files Browse the repository at this point in the history
  • Loading branch information
AViewFromTheTop committed Feb 10, 2025
1 parent 00b7641 commit 92c8369
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ protected MesogleaBubbleParticle(
this.xd = xd * 0.2F + (Math.random() * 2.0 - 1.0) * 0.02F;
this.yd = yd * 0.2F + (Math.random() * 2.0 - 1.0) * 0.02F;
this.zd = zd * 0.2F + (Math.random() * 2.0 - 1.0) * 0.02F;
this.lifetime = (int)(40D / (Math.random() * 0.8 + 0.2)) * (this.yd < 0 ? 1 : 2);
this.lifetime = (int) (40D / (Math.random() * 0.8 + 0.2) * (this.yd < 0 ? 0.5D : 1D));
}

@Override
Expand Down

0 comments on commit 92c8369

Please sign in to comment.