summaryrefslogtreecommitdiffstats
path: root/nms-patches/PathfinderGoalEatTile.patch
diff options
context:
space:
mode:
Diffstat (limited to 'nms-patches/PathfinderGoalEatTile.patch')
-rw-r--r--nms-patches/PathfinderGoalEatTile.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/nms-patches/PathfinderGoalEatTile.patch b/nms-patches/PathfinderGoalEatTile.patch
new file mode 100644
index 00000000..88f1cd79
--- /dev/null
+++ b/nms-patches/PathfinderGoalEatTile.patch
@@ -0,0 +1,34 @@
+--- ../work/decompile-bb26c12b/net/minecraft/server/PathfinderGoalEatTile.java 2014-11-27 08:59:46.821421318 +1100
++++ src/main/java/net/minecraft/server/PathfinderGoalEatTile.java 2014-11-27 08:42:10.108850996 +1100
+@@ -3,6 +3,11 @@
+ import com.google.common.base.Predicate;
+ import com.google.common.base.Predicates;
+
++// CraftBukkit start
++import org.bukkit.craftbukkit.event.CraftEventFactory;
++import org.bukkit.Material;
++// CraftBukkit end
++
+ public class PathfinderGoalEatTile extends PathfinderGoal {
+
+ private static final Predicate b = BlockStatePredicate.a((Block) Blocks.TALLGRASS).a(BlockLongGrass.TYPE, Predicates.equalTo(EnumTallGrassType.GRASS));
+@@ -50,7 +55,8 @@
+ BlockPosition blockposition = new BlockPosition(this.c.locX, this.c.locY, this.c.locZ);
+
+ if (PathfinderGoalEatTile.b.apply(this.d.getType(blockposition))) {
+- if (this.d.getGameRules().getBoolean("mobGriefing")) {
++ // CraftBukkit
++ if (!CraftEventFactory.callEntityChangeBlockEvent(this.c, this.c.world.getWorld().getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ()), Material.AIR, !this.d.getGameRules().getBoolean("mobGriefing")).isCancelled()) {
+ this.d.setAir(blockposition, false);
+ }
+
+@@ -59,7 +65,8 @@
+ BlockPosition blockposition1 = blockposition.down();
+
+ if (this.d.getType(blockposition1).getBlock() == Blocks.GRASS) {
+- if (this.d.getGameRules().getBoolean("mobGriefing")) {
++ // CraftBukkit
++ if (!CraftEventFactory.callEntityChangeBlockEvent(this.c, this.c.world.getWorld().getBlockAt(blockposition1.getX(), blockposition1.getY(), blockposition1.getZ()), Material.DIRT, !this.d.getGameRules().getBoolean("mobGriefing")).isCancelled()) {
+ this.d.triggerEffect(2001, blockposition1, Block.getId(Blocks.GRASS));
+ this.d.setTypeAndData(blockposition1, Blocks.DIRT.getBlockData(), 2);
+ }