mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
90ac03522a
This reverts commit d6e3dff7d8
.
22 lines
720 B
Diff
22 lines
720 B
Diff
--- ../work/decompile-8eb82bde//net/minecraft/server/ChunkSection.java 2014-11-28 17:43:42.989707437 +0000
|
|
+++ src/main/java/net/minecraft/server/ChunkSection.java 2014-11-28 17:38:18.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]);
|
|
|