2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/PathfinderGoalBreakDoor.java
|
|
|
|
+++ b/net/minecraft/server/PathfinderGoalBreakDoor.java
|
2014-11-25 22:32:16 +01:00
|
|
|
@@ -63,6 +63,12 @@
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.g == 240 && this.a.world.getDifficulty() == EnumDifficulty.HARD) {
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ if (org.bukkit.craftbukkit.event.CraftEventFactory.callEntityBreakDoorEvent(this.a, this.b.getX(), this.b.getY(), this.b.getZ()).isCancelled()) {
|
|
|
|
+ this.c();
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
this.a.world.setAir(this.b);
|
2016-02-29 22:32:46 +01:00
|
|
|
this.a.world.triggerEffect(1021, this.b, 0);
|
2014-11-25 22:32:16 +01:00
|
|
|
this.a.world.triggerEffect(2001, this.b, Block.getId(this.c));
|