diff --git a/src/minecraft/biomesoplenty/blocks/BlockPuddle.java b/src/minecraft/biomesoplenty/blocks/BlockPuddle.java index c7b78f28b..9738f4909 100644 --- a/src/minecraft/biomesoplenty/blocks/BlockPuddle.java +++ b/src/minecraft/biomesoplenty/blocks/BlockPuddle.java @@ -55,7 +55,7 @@ public class BlockPuddle extends Block @Override public void updateTick(World world, int x, int y, int z, Random par5Random) { - if (!world.isRaining() && world.rand.nextInt(400) == 0) + if (!world.isRaining() && world.rand.nextInt(125) == 0) { world.setBlock(x, y, z, Block.dirt.blockID); }