*remove debug msg

This commit is contained in:
Jesse Boyd 2016-07-27 08:04:56 +10:00
parent ff60177dcc
commit 3d15022167
2 changed files with 0 additions and 6 deletions

View File

@ -352,9 +352,6 @@ public class BukkitQueue_1_10 extends BukkitQueue_0<Chunk, ChunkSection[], Chunk
@Override
public int getSkyLight(ChunkSection section, int x, int y, int z) {
if (x == 15 && z == 0) {
System.out.println(" \\ " + x + "," + z + " | " + section.b(x & 15, y & 15, z & 15) + " | " + section.b(0, 0, 0));
}
return section.b(x & 15, y & 15, z & 15);
}

View File

@ -78,9 +78,6 @@ public class NMSRelighter {
int z = MathMan.unpair16y(layer);
int xx = bx + x;
int zz = bz + z;
if (y < 0) {
System.out.println(y);
}
int emit = queue.getEmmittedLight(xx, y, zz);
if (emit < 2) {
continue;