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

@@ -77,11 +77,23 @@ public class BlockRedstoneOre extends Block {
public void dropNaturally(World world, int i, int j, int k, int l, float f, int i1) {
super.dropNaturally(world, i, j, k, l, f, i1);
/* CraftBukkit start - delegate to getExpDrop
if (this.getDropType(l, world.random, i1) != this.id) {
int j1 = 1 + world.random.nextInt(5);
this.g(world, i, j, k, j1);
} */
}
public int getExpDrop(World world, int l, int i1) {
if (this.getDropType(l, world.random, i1) != this.id) {
int j1 = 1 + world.random.nextInt(5);
return j1;
}
return 0;
// CraftBukkit end
}
private void n(World world, int i, int j, int k) {