Removed unneeded check.

This commit is contained in:
SirSengir 2013-01-16 16:27:06 +01:00
parent dc6fcac971
commit 10ef5530ea

View file

@ -34,10 +34,6 @@ public class BlockSpring extends Block {
if(!world.isAirBlock(x, y + 1, z))
return;
int above = world.getBlockId(x, y + 1, z);
if(above == Block.waterStill.blockID)
return;
world.setBlockWithNotify(x, y + 1, z, Block.waterStill.blockID);
}
}