mirror of
https://github.com/PaperMC/Paper.git
synced 2025-07-26 01:32:02 -07:00
SPIGOT-5526: Call EntityChangeBlockEvent for bees triggering crop growth
This commit is contained in:
@@ -46,6 +46,15 @@
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -681,7 +685,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
- if (flag) {
|
||||
+ if (flag && !org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(EntityBee.this, blockposition, iblockdata.set(blockstateinteger, (Integer) iblockdata.get(blockstateinteger) + 1)).isCancelled()) { // Spigot
|
||||
EntityBee.this.world.triggerEffect(2005, blockposition, 0);
|
||||
EntityBee.this.world.setTypeUpdate(blockposition, (IBlockData) iblockdata.set(blockstateinteger, (Integer) iblockdata.get(blockstateinteger) + 1));
|
||||
EntityBee.this.eO();
|
||||
@@ -696,7 +700,7 @@
|
||||
class i extends EntityBee.a {
|
||||
|
||||
|
Reference in New Issue
Block a user