Skip to content

Commit

Permalink
fix: me when unintentional character
Browse files Browse the repository at this point in the history
  • Loading branch information
Zepalesque committed Dec 22, 2024
1 parent 9bb86c3 commit e5fcb84
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public static void spawnAerjumpParticles(Level level, double x, double y, double
if (level != null) {
RandomSource random = level.getRandom();
double radius = 1.25D;
double height = 0.3 aD;
double height = 0.3D;
for (int i = 0; i < 12; i++) {
double x2 = x + (random.nextDouble() * radius) - (radius * 0.5D);
double y2 = y + (random.nextDouble() * height);
Expand Down

0 comments on commit e5fcb84

Please sign in to comment.