Call BlockPlaceEvent for cocoa beans planted on log. Adds BUKKIT-5039

The behavior of cocoa are now aligned to be the same as other plants.

Pulled from PR #1281
This commit is contained in:
BlackHole 2013-12-06 19:06:17 +01:00 committed by feildmaster
parent 36ef37b982
commit c7b4514ad3

View file

@ -24,6 +24,7 @@ public class ItemDye extends Item {
}
public boolean interactWith(ItemStack itemstack, EntityHuman entityhuman, World world, int i, int j, int k, int l, float f, float f1, float f2) {
final int clickedX = i, clickedY = j, clickedZ = k; // CraftBukkit
if (!entityhuman.a(i, j, k, l, itemstack)) {
return false;
} else {
@ -67,7 +68,12 @@ public class ItemDye extends Item {
if (world.isEmpty(i, j, k)) {
int j1 = Blocks.COCOA.getPlacedData(world, i, j, k, l, f, f1, f2, 0);
world.setTypeAndData(i, j, k, Blocks.COCOA, j1, 2);
// CraftBukkit start
// world.setTypeAndData(i, j, k, Blocks.COCOA, j1, 2);
if (!ItemBlock.processBlockPlace(world, entityhuman, null, i, j, k, Blocks.COCOA, j1, clickedX, clickedY, clickedZ)) {
return false;
}
// CraftBukkit end
if (!entityhuman.abilities.canInstantlyBuild) {
--itemstack.count;
}