--- /home/matt/mc-dev-private//net/minecraft/server/Block.java 2015-02-26 22:40:22.155608144 +0000 +++ src/main/java/net/minecraft/server/Block.java 2015-02-26 22:40:22.159608144 +0000 @@ -336,7 +336,8 @@ int j = this.getDropCount(i, world.random); for (int k = 0; k < j; ++k) { - if (world.random.nextFloat() <= f) { + // CraftBukkit - <= to < to allow for plugins to completely disable block drops from explosions + if (world.random.nextFloat() < f) { Item item = this.getDropType(iblockdata, world.random, i); if (item != null) { @@ -1002,4 +1003,10 @@ return this.getBreakSound(); } } + + // CraftBukkit start + public int getExpDrop(World world, IBlockData data, int enchantmentLevel) { + return 0; + } + // CraftBukkit end }