summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThinkofdeath <thinkofdeath@spigotmc.org>2015-04-01 17:21:15 +0100
committerThinkofdeath <thinkofdeath@spigotmc.org>2015-04-01 17:21:15 +0100
commit63e28b1c3d7d505d37a16d662141e91fd7cde065 (patch)
treebf9371295b9c8840ff10590290d07b3e823d09c5
parent61ef214f916a0a2d52edd291768e22ce7ce9fbd8 (diff)
downloadcraftbukkit-63e28b1c3d7d505d37a16d662141e91fd7cde065.tar
craftbukkit-63e28b1c3d7d505d37a16d662141e91fd7cde065.tar.gz
craftbukkit-63e28b1c3d7d505d37a16d662141e91fd7cde065.tar.lz
craftbukkit-63e28b1c3d7d505d37a16d662141e91fd7cde065.tar.xz
craftbukkit-63e28b1c3d7d505d37a16d662141e91fd7cde065.zip
Don't allow liquids to flow into unloaded chunks
-rw-r--r--nms-patches/BlockFlowing.patch20
1 files changed, 13 insertions, 7 deletions
diff --git a/nms-patches/BlockFlowing.patch b/nms-patches/BlockFlowing.patch
index 9b22e0e1..ce1f5292 100644
--- a/nms-patches/BlockFlowing.patch
+++ b/nms-patches/BlockFlowing.patch
@@ -1,5 +1,5 @@
---- /home/matt/mc-dev-private//net/minecraft/server/BlockFlowing.java 2015-02-26 22:40:22.127608144 +0000
-+++ src/main/java/net/minecraft/server/BlockFlowing.java 2015-02-26 22:40:22.127608144 +0000
+--- /home/matt/mc-dev-private//net/minecraft/server/BlockFlowing.java 2015-04-01 17:20:36.772751379 +0100
++++ src/main/java/net/minecraft/server/BlockFlowing.java 2015-04-01 17:20:36.772751379 +0100
@@ -5,6 +5,11 @@
import java.util.Random;
import java.util.Set;
@@ -12,20 +12,18 @@
public class BlockFlowing extends BlockFluids {
int a;
-@@ -18,7 +23,12 @@
+@@ -18,6 +23,11 @@
}
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();
+ int i = ((Integer) iblockdata.get(BlockFlowing.LEVEL)).intValue();
byte b0 = 1;
- if (this.material == Material.LAVA && !world.worldProvider.n()) {
@@ -88,6 +98,12 @@
IBlockData iblockdata2 = world.getType(blockposition.down());
@@ -48,7 +46,7 @@
} else if (i >= 0 && (i == 0 || this.g(world, blockposition.down(), iblockdata2))) {
Set set = this.f(world, blockposition);
-@@ -116,7 +134,16 @@
+@@ -116,14 +134,23 @@
while (iterator1.hasNext()) {
EnumDirection enumdirection1 = (EnumDirection) iterator1.next();
@@ -66,3 +64,11 @@
}
}
+ }
+
+ private void flow(World world, BlockPosition blockposition, IBlockData iblockdata, int i) {
+- if (this.h(world, blockposition, iblockdata)) {
++ if (world.isLoaded(blockposition) && this.h(world, blockposition, iblockdata)) { // CraftBukkit - add isLoaded check
+ if (iblockdata.getBlock() != Blocks.AIR) {
+ if (this.material == Material.LAVA) {
+ this.fizz(world, blockposition);