diff options
author | md_5 <git@md-5.net> | 2018-07-31 21:11:35 +1000 |
---|---|---|
committer | md_5 <git@md-5.net> | 2018-07-31 21:11:35 +1000 |
commit | d474030e14d711ba29b83f3fff8e6c6dcf550a08 (patch) | |
tree | 080c03ee628126010c37ef1848f8a6d8dd0d7555 /nms-patches | |
parent | 549d9b012078466bd36c6185fe6e1a4bcf311b8c (diff) | |
download | craftbukkit-d474030e14d711ba29b83f3fff8e6c6dcf550a08.tar craftbukkit-d474030e14d711ba29b83f3fff8e6c6dcf550a08.tar.gz craftbukkit-d474030e14d711ba29b83f3fff8e6c6dcf550a08.tar.lz craftbukkit-d474030e14d711ba29b83f3fff8e6c6dcf550a08.tar.xz craftbukkit-d474030e14d711ba29b83f3fff8e6c6dcf550a08.zip |
SPIGOT-4198: Pockets of darkness in the air
Diffstat (limited to 'nms-patches')
-rw-r--r-- | nms-patches/ChunkSection.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/nms-patches/ChunkSection.patch b/nms-patches/ChunkSection.patch deleted file mode 100644 index 88b6e356..00000000 --- a/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() { |