summaryrefslogtreecommitdiffstats
path: root/nms-patches/BlockFlowing.patch
diff options
context:
space:
mode:
authorThinkofdeath <thinkofdeath@spigotmc.org>2014-11-26 08:32:16 +1100
committermd_5 <git@md-5.net>2014-11-28 17:16:30 +1100
commit24557bc2b37deb6a0edf497d547471832457b1dd (patch)
treec560572889a3b0b34964a0cddb35dc87fda3c914 /nms-patches/BlockFlowing.patch
parenta4805dbd77da057cc1ea0bf344379bc6e53ca1f6 (diff)
downloadcraftbukkit-24557bc2b37deb6a0edf497d547471832457b1dd.tar
craftbukkit-24557bc2b37deb6a0edf497d547471832457b1dd.tar.gz
craftbukkit-24557bc2b37deb6a0edf497d547471832457b1dd.tar.lz
craftbukkit-24557bc2b37deb6a0edf497d547471832457b1dd.tar.xz
craftbukkit-24557bc2b37deb6a0edf497d547471832457b1dd.zip
Update to Minecraft 1.8
For more information please see http://www.spigotmc.org/
Diffstat (limited to 'nms-patches/BlockFlowing.patch')
-rw-r--r--nms-patches/BlockFlowing.patch83
1 files changed, 83 insertions, 0 deletions
diff --git a/nms-patches/BlockFlowing.patch b/nms-patches/BlockFlowing.patch
new file mode 100644
index 00000000..84b3101d
--- /dev/null
+++ b/nms-patches/BlockFlowing.patch
@@ -0,0 +1,83 @@
+--- ../work/decompile-bb26c12b/net/minecraft/server/BlockFlowing.java 2014-11-27 08:59:46.529422604 +1100
++++ src/main/java/net/minecraft/server/BlockFlowing.java 2014-11-27 08:42:10.112850989 +1100
+@@ -5,6 +5,11 @@
+ import java.util.Random;
+ import java.util.Set;
+
++// CraftBukkit start
++import org.bukkit.block.BlockFace;
++import org.bukkit.event.block.BlockFromToEvent;
++// CraftBukkit end
++
+ public class BlockFlowing extends BlockFluids {
+
+ int a;
+@@ -18,7 +23,12 @@
+ }
+
+ public void b(World world, BlockPosition blockposition, IBlockData iblockdata, Random random) {
+- int i = ((Integer) iblockdata.get(BlockFlowing.LEVEL)).intValue();
++ // CraftBukkit start
++ org.bukkit.World bworld = world.getWorld();
++ org.bukkit.Server server = world.getServer();
++ org.bukkit.block.Block source = bworld == null ? null : bworld.getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ());
++ // CraftBukkit end
++ int i = ((Integer) iblockdata.get(LEVEL)).intValue();
+ byte b0 = 1;
+
+ if (this.material == Material.LAVA && !world.worldProvider.n()) {
+@@ -88,17 +98,25 @@
+ IBlockData iblockdata2 = world.getType(blockposition.down());
+
+ if (this.h(world, blockposition.down(), iblockdata2)) {
+- if (this.material == Material.LAVA && world.getType(blockposition.down()).getBlock().getMaterial() == Material.WATER) {
+- world.setTypeUpdate(blockposition.down(), Blocks.STONE.getBlockData());
+- this.fizz(world, blockposition.down());
+- return;
+- }
++ // CraftBukkit start - Send "down" to the server
++ BlockFromToEvent event = new BlockFromToEvent(source, BlockFace.DOWN);
++ if (server != null) {
++ server.getPluginManager().callEvent(event);
++ }
++ if (!event.isCancelled()) {
++ if (this.material == Material.LAVA && world.getType(blockposition.down()).getBlock().getMaterial() == Material.WATER) {
++ world.setTypeUpdate(blockposition.down(), Blocks.STONE.getBlockData());
++ this.fizz(world, blockposition.down());
++ return;
++ }
+
+- if (i >= 8) {
+- this.flow(world, blockposition.down(), iblockdata2, i);
+- } else {
+- this.flow(world, blockposition.down(), iblockdata2, i + 8);
++ if (i >= 8) {
++ this.flow(world, blockposition.down(), iblockdata2, i);
++ } else {
++ this.flow(world, blockposition.down(), iblockdata2, i + 8);
++ }
+ }
++ // CraftBukkit end
+ } else if (i >= 0 && (i == 0 || this.g(world, blockposition.down(), iblockdata2))) {
+ Set set = this.e(world, blockposition);
+
+@@ -115,8 +133,17 @@
+
+ while (iterator1.hasNext()) {
+ EnumDirection enumdirection1 = (EnumDirection) iterator1.next();
+-
+- this.flow(world, blockposition.shift(enumdirection1), world.getType(blockposition.shift(enumdirection1)), k);
++
++ // CraftBukkit start
++ BlockFromToEvent event = new BlockFromToEvent(source, org.bukkit.craftbukkit.block.CraftBlock.notchToBlockFace(enumdirection1));
++ if (server != null) {
++ server.getPluginManager().callEvent(event);
++ }
++
++ if (!event.isCancelled()) {
++ this.flow(world, blockposition.shift(enumdirection1), world.getType(blockposition.shift(enumdirection1)), k);
++ }
++ // CraftBukkit end
+ }
+ }
+