diff --git a/src/main/java/ladysnake/effective/client/world/WaterfallCloudGenerators.java b/src/main/java/ladysnake/effective/client/world/WaterfallCloudGenerators.java index fe3e7bdd..247628cd 100644 --- a/src/main/java/ladysnake/effective/client/world/WaterfallCloudGenerators.java +++ b/src/main/java/ladysnake/effective/client/world/WaterfallCloudGenerators.java @@ -49,7 +49,7 @@ public static void tick() { BlockPos pos = generators.get(i); if (pos != null) { if (shouldCauseWaterfall(world, pos, world.getFluidState(pos))) { - if (world.random.nextInt(500) == 0) { + if (world.random.nextInt(200) == 0) { world.playSound(pos.getX(), pos.getY(), pos.getZ(), Effective.AMBIENCE_WATERFALL, SoundCategory.AMBIENT, 10f, 1.2f + world.random.nextFloat() / 10f, true); } scheduleParticleTick(pos, 6);