Temporary fix for 1.9

This commit is contained in:
Jesse Boyd 2016-03-01 14:17:29 +11:00
parent 841809b93d
commit 106c3c5cb4

View File

@ -11,7 +11,6 @@ public class SlowChunk extends PlotChunk<Chunk> {
public PlotBlock[][] result = new PlotBlock[16][]; public PlotBlock[][] result = new PlotBlock[16][];
public int[][] biomes; public int[][] biomes;
private PlotBlock lastBlock;
public SlowChunk(ChunkWrapper chunk) { public SlowChunk(ChunkWrapper chunk) {
super(chunk); super(chunk);
} }
@ -35,12 +34,8 @@ public class SlowChunk extends PlotChunk<Chunk> {
if (result[y >> 4] == null) { if (result[y >> 4] == null) {
result[y >> 4] = new PlotBlock[4096]; result[y >> 4] = new PlotBlock[4096];
} }
if (id == lastBlock.id && data == lastBlock.data) {
result[MainUtil.CACHE_I[x][y][z]][MainUtil.CACHE_J[x][y][z]] = lastBlock;
} else {
result[MainUtil.CACHE_I[x][y][z]][MainUtil.CACHE_J[x][y][z]] = new PlotBlock((short) id, data); result[MainUtil.CACHE_I[x][y][z]][MainUtil.CACHE_J[x][y][z]] = new PlotBlock((short) id, data);
} }
}
@Override @Override
public PlotChunk clone() { public PlotChunk clone() {