mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 11:44:19 +01:00
8398e12b34
By: md_5 <git@md-5.net>
11 lines
657 B
Diff
11 lines
657 B
Diff
--- a/net/minecraft/world/level/block/BlockGrowingTop.java
|
|
+++ b/net/minecraft/world/level/block/BlockGrowingTop.java
|
|
@@ -48,7 +48,7 @@
|
|
BlockPosition blockposition1 = blockposition.relative(this.growthDirection);
|
|
|
|
if (this.canGrowInto(worldserver.getBlockState(blockposition1))) {
|
|
- worldserver.setBlockAndUpdate(blockposition1, this.getGrowIntoState(iblockdata, worldserver.random));
|
|
+ org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(worldserver, blockposition, blockposition1, this.getGrowIntoState(iblockdata, worldserver.random)); // CraftBukkit
|
|
}
|
|
}
|
|
|