mirror of
https://hub.spigotmc.org/stash/scm/spigot/craftbukkit.git
synced 2025-08-20 05:14:20 +00: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…
Add table
Reference in a new issue