Implement BlockBreakEvent block experience. Adds BUKKIT-2033

This commit is contained in:
feildmaster
2012-08-08 06:23:43 -05:00
parent 8d946b88b3
commit 27c1c85adb
5 changed files with 73 additions and 3 deletions

View File

@@ -698,5 +698,9 @@ public class Block {
public static int getDropData(Block block, int data) {
return block.getDropData(data);
}
public int getExpDrop(World world, int data, int enchantmentLevel) {
return 0;
}
// CraftBukkit end
}