Puddles now dry up faster

This commit is contained in:
Adubbz 2013-07-15 20:15:25 +10:00
parent e3cf51fa1a
commit 0ce61a5104
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}