Restore CraftBukkit diff in ItemDye. Fixes BUKKIT-4493

Change ItemDye to pass the EntityHuman for StructureGrowEvent again.
This commit is contained in:
T00thpick1 2013-07-18 19:01:27 -04:00 committed by Wesley Wolfe
parent 5bfd599e9f
commit b6fec0467f

View file

@ -29,7 +29,7 @@ public class ItemDye extends Item {
return false;
} else {
if (itemstack.getData() == 15) {
if (a(itemstack, world, i, j, k)) {
if (a(itemstack, world, i, j, k, entityhuman)) { // CraftBukkit - pass entity for StructureGrowEvent
if (!world.isStatic) {
world.triggerEffect(2005, i, j, k, 0);
}