2016-07-08 03:12:40 +02:00
|
|
|
--- a/net/minecraft/server/PathfinderGoalVillagerFarm.java
|
|
|
|
+++ b/net/minecraft/server/PathfinderGoalVillagerFarm.java
|
2016-11-17 02:41:03 +01:00
|
|
|
@@ -40,7 +40,11 @@
|
2016-07-08 03:12:40 +02:00
|
|
|
Block block = iblockdata.getBlock();
|
|
|
|
|
2016-11-17 02:41:03 +01:00
|
|
|
if (this.f == 0 && block instanceof BlockCrops && ((BlockCrops) block).A(iblockdata)) {
|
2016-07-08 03:12:40 +02:00
|
|
|
- world.setAir(blockposition, true);
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ if (!org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(this.c, blockposition, Blocks.AIR, 0).isCancelled()) {
|
|
|
|
+ world.setAir(blockposition, true);
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
} else if (this.f == 1 && iblockdata.getMaterial() == Material.AIR) {
|
2016-11-17 02:41:03 +01:00
|
|
|
InventorySubcontainer inventorysubcontainer = this.c.dm();
|
2016-07-08 03:12:40 +02:00
|
|
|
|
2016-11-17 02:41:03 +01:00
|
|
|
@@ -49,19 +53,28 @@
|
2016-07-08 03:12:40 +02:00
|
|
|
boolean flag = false;
|
|
|
|
|
2016-11-17 02:41:03 +01:00
|
|
|
if (!itemstack.isEmpty()) {
|
2016-07-08 03:12:40 +02:00
|
|
|
+ // CraftBukkit start
|
|
|
|
+ Block planted = null;
|
|
|
|
if (itemstack.getItem() == Items.WHEAT_SEEDS) {
|
|
|
|
- world.setTypeAndData(blockposition, Blocks.WHEAT.getBlockData(), 3);
|
|
|
|
+ planted = Blocks.WHEAT;
|
|
|
|
flag = true;
|
|
|
|
} else if (itemstack.getItem() == Items.POTATO) {
|
|
|
|
- world.setTypeAndData(blockposition, Blocks.POTATOES.getBlockData(), 3);
|
|
|
|
+ planted = Blocks.POTATOES;
|
|
|
|
flag = true;
|
|
|
|
} else if (itemstack.getItem() == Items.CARROT) {
|
|
|
|
- world.setTypeAndData(blockposition, Blocks.CARROTS.getBlockData(), 3);
|
|
|
|
+ planted = Blocks.CARROTS;
|
|
|
|
flag = true;
|
|
|
|
} else if (itemstack.getItem() == Items.BEETROOT_SEEDS) {
|
|
|
|
- world.setTypeAndData(blockposition, Blocks.BEETROOT.getBlockData(), 3);
|
|
|
|
+ planted = Blocks.BEETROOT;
|
|
|
|
flag = true;
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ if (planted != null && !org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(this.c, blockposition, planted, 0).isCancelled()) {
|
|
|
|
+ world.setTypeAndData(blockposition, planted.getBlockData(), 3);
|
|
|
|
+ } else {
|
|
|
|
+ flag = false;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flag) {
|