mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 18:31:29 +01:00
16 lines
727 B
Diff
16 lines
727 B
Diff
--- a/net/minecraft/server/PathfinderGoalBreakDoor.java
|
|
+++ b/net/minecraft/server/PathfinderGoalBreakDoor.java
|
|
@@ -44,6 +44,12 @@
|
|
}
|
|
|
|
if (this.d == 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);
|
|
this.a.world.triggerEffect(1021, this.b, 0);
|
|
this.a.world.triggerEffect(2001, this.b, Block.getCombinedId(this.a.world.getType(this.b)));
|