From e78c07995cb8698c08c4fbc2da7fb080f9dc24ec Mon Sep 17 00:00:00 2001 From: CraftBukkit/Spigot Date: Tue, 31 Jul 2018 21:11:35 +1000 Subject: [PATCH] SPIGOT-4198: Pockets of darkness in the air By: md_5 --- paper-server/nms-patches/ChunkSection.patch | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 paper-server/nms-patches/ChunkSection.patch diff --git a/paper-server/nms-patches/ChunkSection.patch b/paper-server/nms-patches/ChunkSection.patch deleted file mode 100644 index 88b6e356d..000000000 --- a/paper-server/nms-patches/ChunkSection.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/net/minecraft/server/ChunkSection.java -+++ b/net/minecraft/server/ChunkSection.java -@@ -15,7 +15,7 @@ - - public ChunkSection(int i, boolean flag) { - this.yPos = i; -- this.blockIds = new DataPaletteBlock(ChunkSection.GLOBAL_PALETTE, Block.REGISTRY_ID, GameProfileSerializer::d, GameProfileSerializer::a, Blocks.AIR.getBlockData()); -+ this.blockIds = new DataPaletteBlock<>(ChunkSection.GLOBAL_PALETTE, Block.REGISTRY_ID, GameProfileSerializer::d, GameProfileSerializer::a, Blocks.AIR.getBlockData()); // CraftBukkit - decompile error - this.emittedLight = new NibbleArray(); - if (flag) { - this.skyLight = new NibbleArray(); -@@ -62,7 +62,7 @@ - } - - public boolean a() { -- return this.nonEmptyBlockCount == 0; -+ return false; // CraftBukkit - MC-80966 - } - - public boolean b() {