mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-19 07:33:11 +01:00
Call EntityChangedBlockEvent for water splash potions extinguishing fire
This commit is contained in:
parent
daf45148d1
commit
a602cb2e8c
1 changed files with 8 additions and 0 deletions
|
@ -115,3 +115,11 @@
|
|||
}
|
||||
}
|
||||
|
||||
@@ -151,6 +186,7 @@
|
||||
|
||||
private void a(BlockPosition blockposition) {
|
||||
if (this.world.getType(blockposition).getBlock() == Blocks.FIRE) {
|
||||
+ if (org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(this, blockposition.getX(), blockposition.getY(), blockposition.getZ(), Blocks.AIR, 0).isCancelled()) return; // CraftBukkit
|
||||
this.world.setTypeAndData(blockposition, Blocks.AIR.getBlockData(), 2);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue