mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-10 20:59:54 +01:00
SPIGOT-5526: Call EntityChangeBlockEvent for bees triggering crop growth
This commit is contained in:
parent
b91ce1192a
commit
5c6b0dc6e4
@ -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 {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user