mirror of
https://hub.spigotmc.org/stash/scm/spigot/craftbukkit.git
synced 2024-11-25 13:56:14 +00:00
12 lines
563 B
Diff
12 lines
563 B
Diff
--- a/net/minecraft/world/level/block/ChangeOverTimeBlock.java
|
|
+++ b/net/minecraft/world/level/block/ChangeOverTimeBlock.java
|
|
@@ -20,7 +20,7 @@
|
|
|
|
if (randomsource.nextFloat() < 0.05688889F) {
|
|
this.getNextState(iblockdata, worldserver, blockposition, randomsource).ifPresent((iblockdata1) -> {
|
|
- worldserver.setBlockAndUpdate(blockposition, iblockdata1);
|
|
+ org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockFormEvent(worldserver, blockposition, iblockdata1); // CraftBukkit
|
|
});
|
|
}
|
|
|