mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
Temporary fix for 1.9
This commit is contained in:
parent
841809b93d
commit
106c3c5cb4
@ -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,11 +34,7 @@ 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]] = new PlotBlock((short) id, 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);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user