diff --git a/Spigot-Server-Patches/Prevent-Fire-from-loading-chunks.patch b/Spigot-Server-Patches/Prevent-Fire-from-loading-chunks.patch index a7f5fe0cbf..e32e30acc7 100644 --- a/Spigot-Server-Patches/Prevent-Fire-from-loading-chunks.patch +++ b/Spigot-Server-Patches/Prevent-Fire-from-loading-chunks.patch @@ -7,9 +7,18 @@ This causes the nether to spam unload/reload chunks, plus overall bad behavior. diff --git a/src/main/java/net/minecraft/server/BlockFire.java b/src/main/java/net/minecraft/server/BlockFire.java -index 2909f78f87..0ece78d4dc 100644 +index 2909f78f8..d32857c87 100644 --- a/src/main/java/net/minecraft/server/BlockFire.java +++ b/src/main/java/net/minecraft/server/BlockFire.java +@@ -0,0 +0,0 @@ public class BlockFire extends Block { + BlockStateBoolean blockstateboolean = (BlockStateBoolean) BlockFire.g.get(enumdirection); + + if (blockstateboolean != null) { +- iblockdata1 = (IBlockData) iblockdata1.set(blockstateboolean, this.h(iblockaccess.getType(blockposition.shift(enumdirection)))); ++ iblockdata1 = (IBlockData) iblockdata1.set(blockstateboolean, this.h(iblockaccess.getTypeIfLoaded(blockposition.shift(enumdirection)))); // Paper - prevent chunk loads + } + } + @@ -0,0 +0,0 @@ public class BlockFire extends Block { } @@ -38,6 +47,15 @@ index 2909f78f87..0ece78d4dc 100644 // CraftBukkit start org.bukkit.block.Block theBlock = world.getWorld().getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ()); @@ -0,0 +0,0 @@ public class BlockFire extends Block { + for (int j = 0; j < i; ++j) { + EnumDirection enumdirection = aenumdirection[j]; + +- if (this.h(iblockaccess.getType(blockposition.shift(enumdirection)))) { ++ if (this.h(iblockaccess.getTypeIfLoaded(blockposition.shift(enumdirection)))) { // Paper - prevent chunk loads + return true; + } + } +@@ -0,0 +0,0 @@ public class BlockFire extends Block { for (int k = 0; k < j; ++k) { EnumDirection enumdirection = aenumdirection[k]; @@ -52,4 +70,13 @@ index 2909f78f87..0ece78d4dc 100644 i = Math.max(this.r(iblockdata), i); } +@@ -0,0 +0,0 @@ public class BlockFire extends Block { + } + + public boolean h(IBlockData iblockdata) { +- return this.r(iblockdata) > 0; ++ return iblockdata != null && this.r(iblockdata) > 0; // Paper - iblockdata can be nullable if chunk is unloaded now + } + + @Override -- \ No newline at end of file