mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 03:52:45 +01:00
25f3b50f6b
By: md_5 <git@md-5.net>
11 lines
507 B
Diff
11 lines
507 B
Diff
--- a/net/minecraft/world/level/block/ChangeOverTimeBlock.java
|
|
+++ b/net/minecraft/world/level/block/ChangeOverTimeBlock.java
|
|
@@ -69,7 +69,7 @@
|
|
|
|
if (randomsource.nextFloat() < f1) {
|
|
this.getNext(iblockdata).ifPresent((iblockdata2) -> {
|
|
- worldserver.setBlockAndUpdate(blockposition, iblockdata2);
|
|
+ org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockFormEvent(worldserver, blockposition, iblockdata2); // CraftBukkit
|
|
});
|
|
}
|
|
|