2016-12-09 02:53:15 +01:00
|
|
|
--- a/net/minecraft/server/BlockFluids.java
|
|
|
|
+++ b/net/minecraft/server/BlockFluids.java
|
2020-06-25 02:00:00 +02:00
|
|
|
@@ -113,14 +113,20 @@
|
|
|
|
if (world.getFluid(blockposition1).a((Tag) TagsFluid.WATER)) {
|
|
|
|
Block block = world.getFluid(blockposition).isSource() ? Blocks.OBSIDIAN : Blocks.COBBLESTONE;
|
2018-07-15 02:00:00 +02:00
|
|
|
|
2020-06-25 02:00:00 +02:00
|
|
|
- world.setTypeUpdate(blockposition, block.getBlockData());
|
|
|
|
- this.fizz(world, blockposition);
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ if (org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockFormEvent(world, blockposition, block.getBlockData())) {
|
|
|
|
+ this.fizz(world, blockposition);
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
return false;
|
|
|
|
}
|
2016-12-09 02:53:15 +01:00
|
|
|
|
2020-06-25 02:00:00 +02:00
|
|
|
if (flag && world.getType(blockposition1).a(Blocks.BLUE_ICE)) {
|
|
|
|
- world.setTypeUpdate(blockposition, Blocks.BASALT.getBlockData());
|
|
|
|
- this.fizz(world, blockposition);
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ if (org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockFormEvent(world, blockposition, Blocks.BASALT.getBlockData())) {
|
|
|
|
+ this.fizz(world, blockposition);
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
return false;
|
|
|
|
}
|
2016-12-09 02:53:15 +01:00
|
|
|
}
|