Puddles now dry up faster

This commit is contained in:
Adubbz 2013-07-15 20:15:25 +10:00
parent e3cf51fa1a
commit 0ce61a5104

View file

@ -55,7 +55,7 @@ public class BlockPuddle extends Block
@Override @Override
public void updateTick(World world, int x, int y, int z, Random par5Random) 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); world.setBlock(x, y, z, Block.dirt.blockID);
} }