mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
15 lines
609 B
Diff
15 lines
609 B
Diff
--- a/net/minecraft/server/BlockIce.java
|
|
+++ b/net/minecraft/server/BlockIce.java
|
|
@@ -41,6 +41,11 @@
|
|
}
|
|
|
|
protected void melt(IBlockData iblockdata, World world, BlockPosition blockposition) {
|
|
+ // CraftBukkit start
|
|
+ if (org.bukkit.craftbukkit.event.CraftEventFactory.callBlockFadeEvent(world, blockposition, world.worldProvider.isNether() ? Blocks.AIR.getBlockData() : Blocks.WATER.getBlockData()).isCancelled()) {
|
|
+ return;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
if (world.worldProvider.isNether()) {
|
|
world.a(blockposition, false);
|
|
} else {
|