summaryrefslogtreecommitdiffstats
path: root/nms-patches/ChunkSection.patch
blob: a48266063c2f044c5fda9ef0af332c663c5d86c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--- ../work/decompile-8eb82bde//net/minecraft/server/ChunkSection.java	2014-11-28 11:22:55.802823166 +0000
+++ src/main/java/net/minecraft/server/ChunkSection.java	2014-11-28 11:01:54.000000000 +0000
@@ -19,6 +19,18 @@
 
     }
 
+    // CraftBukkit start
+    public ChunkSection(int y, boolean flag, char[] blockIds) {
+        this.yPos = y;
+        this.blockIds = blockIds;
+        this.emittedLight = new NibbleArray();
+        if (flag) {
+            this.skyLight = new NibbleArray();
+        }
+        recalcBlockCounts();
+    }
+    // CraftBukkit end
+
     public IBlockData getType(int i, int j, int k) {
         IBlockData iblockdata = (IBlockData) Block.d.a(this.blockIds[j << 8 | k << 4 | i]);