mirror of
https://github.com/boy0001/FastAsyncWorldedit.git
synced 2024-11-28 13:45:36 +01:00
Fix forge compile
This commit is contained in:
parent
57a2bd73dd
commit
76eb1b9094
@ -51,19 +51,19 @@ public class ForgeChunk_All extends CharFaweChunk<Chunk, ForgeQueue_All> {
|
|||||||
super(parent, x, z);
|
super(parent, x, z);
|
||||||
}
|
}
|
||||||
|
|
||||||
public ForgeChunk_All(FaweQueue parent, int x, int z, char[][] ids, short[] count, short[] air, short[] relight, byte[] heightMap) {
|
public ForgeChunk_All(FaweQueue parent, int x, int z, char[][] ids, short[] count, short[] air, byte[] heightMap) {
|
||||||
super(parent, x, z, ids, count, air, relight, heightMap);
|
super(parent, x, z, ids, count, air, heightMap);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public CharFaweChunk copy(boolean shallow) {
|
public CharFaweChunk copy(boolean shallow) {
|
||||||
ForgeChunk_All copy;
|
ForgeChunk_All copy;
|
||||||
if (shallow) {
|
if (shallow) {
|
||||||
copy = new ForgeChunk_All(getParent(), getX(), getZ(), ids, count, air, relight, heightMap);
|
copy = new ForgeChunk_All(getParent(), getX(), getZ(), ids, count, air, heightMap);
|
||||||
copy.biomes = biomes;
|
copy.biomes = biomes;
|
||||||
copy.chunk = chunk;
|
copy.chunk = chunk;
|
||||||
} else {
|
} else {
|
||||||
copy = new ForgeChunk_All(getParent(), getX(), getZ(), (char[][]) MainUtil.copyNd(ids), count.clone(), air.clone(), relight.clone(), heightMap.clone());
|
copy = new ForgeChunk_All(getParent(), getX(), getZ(), (char[][]) MainUtil.copyNd(ids), count.clone(), air.clone(), heightMap.clone());
|
||||||
copy.biomes = biomes;
|
copy.biomes = biomes;
|
||||||
copy.chunk = chunk;
|
copy.chunk = chunk;
|
||||||
copy.biomes = biomes.clone();
|
copy.biomes = biomes.clone();
|
||||||
|
@ -41,8 +41,8 @@ public class ForgeChunk_All extends CharFaweChunk<Chunk, ForgeQueue_All> {
|
|||||||
this.datas = new NibbleArray[16];
|
this.datas = new NibbleArray[16];
|
||||||
}
|
}
|
||||||
|
|
||||||
public ForgeChunk_All(FaweQueue parent, int x, int z, char[][] ids, short[] count, short[] air, short[] relight, byte[] heightMap, byte[][] byteIds, NibbleArray[] datas) {
|
public ForgeChunk_All(FaweQueue parent, int x, int z, char[][] ids, short[] count, short[] air, byte[] heightMap, byte[][] byteIds, NibbleArray[] datas) {
|
||||||
super(parent, x, z, ids, count, air, relight, heightMap);
|
super(parent, x, z, ids, count, air, heightMap);
|
||||||
this.byteIds = byteIds;
|
this.byteIds = byteIds;
|
||||||
this.datas = datas;
|
this.datas = datas;
|
||||||
}
|
}
|
||||||
@ -51,11 +51,11 @@ public class ForgeChunk_All extends CharFaweChunk<Chunk, ForgeQueue_All> {
|
|||||||
public CharFaweChunk copy(boolean shallow) {
|
public CharFaweChunk copy(boolean shallow) {
|
||||||
ForgeChunk_All copy;
|
ForgeChunk_All copy;
|
||||||
if (shallow) {
|
if (shallow) {
|
||||||
copy = new ForgeChunk_All(getParent(), getX(), getZ(), ids, count, air, relight, heightMap, byteIds, datas);
|
copy = new ForgeChunk_All(getParent(), getX(), getZ(), ids, count, air, heightMap, byteIds, datas);
|
||||||
copy.biomes = biomes;
|
copy.biomes = biomes;
|
||||||
copy.chunk = chunk;
|
copy.chunk = chunk;
|
||||||
} else {
|
} else {
|
||||||
copy = new ForgeChunk_All(getParent(), getX(), getZ(), (char[][]) MainUtil.copyNd(ids), count.clone(), air.clone(), relight.clone(), heightMap.clone(), (byte[][]) MainUtil.copyNd(byteIds), datas.clone());
|
copy = new ForgeChunk_All(getParent(), getX(), getZ(), (char[][]) MainUtil.copyNd(ids), count.clone(), air.clone(), heightMap.clone(), (byte[][]) MainUtil.copyNd(byteIds), datas.clone());
|
||||||
copy.biomes = biomes;
|
copy.biomes = biomes;
|
||||||
copy.chunk = chunk;
|
copy.chunk = chunk;
|
||||||
copy.biomes = biomes.clone();
|
copy.biomes = biomes.clone();
|
||||||
@ -112,7 +112,7 @@ public class ForgeChunk_All extends CharFaweChunk<Chunk, ForgeQueue_All> {
|
|||||||
case 62:
|
case 62:
|
||||||
case 50:
|
case 50:
|
||||||
case 10:
|
case 10:
|
||||||
this.relight[i]++;
|
// this.relight[i]++;
|
||||||
default:
|
default:
|
||||||
vs2[j] = (char) ((id << 4) + data);
|
vs2[j] = (char) ((id << 4) + data);
|
||||||
vs[j] = (byte) id;
|
vs[j] = (byte) id;
|
||||||
|
@ -41,19 +41,19 @@ public class ForgeChunk_All extends CharFaweChunk<Chunk, ForgeQueue_All> {
|
|||||||
super(parent, x, z);
|
super(parent, x, z);
|
||||||
}
|
}
|
||||||
|
|
||||||
public ForgeChunk_All(FaweQueue parent, int x, int z, char[][] ids, short[] count, short[] air, short[] relight, byte[] heightMap) {
|
public ForgeChunk_All(FaweQueue parent, int x, int z, char[][] ids, short[] count, short[] air, byte[] heightMap) {
|
||||||
super(parent, x, z, ids, count, air, relight, heightMap);
|
super(parent, x, z, ids, count, air, heightMap);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public CharFaweChunk copy(boolean shallow) {
|
public CharFaweChunk copy(boolean shallow) {
|
||||||
ForgeChunk_All copy;
|
ForgeChunk_All copy;
|
||||||
if (shallow) {
|
if (shallow) {
|
||||||
copy = new ForgeChunk_All(getParent(), getX(), getZ(), ids, count, air, relight, heightMap);
|
copy = new ForgeChunk_All(getParent(), getX(), getZ(), ids, count, air, heightMap);
|
||||||
copy.biomes = biomes;
|
copy.biomes = biomes;
|
||||||
copy.chunk = chunk;
|
copy.chunk = chunk;
|
||||||
} else {
|
} else {
|
||||||
copy = new ForgeChunk_All(getParent(), getX(), getZ(), (char[][]) MainUtil.copyNd(ids), count.clone(), air.clone(), relight.clone(), heightMap.clone());
|
copy = new ForgeChunk_All(getParent(), getX(), getZ(), (char[][]) MainUtil.copyNd(ids), count.clone(), air.clone(), heightMap.clone());
|
||||||
copy.biomes = biomes;
|
copy.biomes = biomes;
|
||||||
copy.chunk = chunk;
|
copy.chunk = chunk;
|
||||||
copy.biomes = biomes.clone();
|
copy.biomes = biomes.clone();
|
||||||
|
@ -51,19 +51,19 @@ public class ForgeChunk_All extends CharFaweChunk<Chunk, ForgeQueue_All> {
|
|||||||
super(parent, x, z);
|
super(parent, x, z);
|
||||||
}
|
}
|
||||||
|
|
||||||
public ForgeChunk_All(FaweQueue parent, int x, int z, char[][] ids, short[] count, short[] air, short[] relight, byte[] heightMap) {
|
public ForgeChunk_All(FaweQueue parent, int x, int z, char[][] ids, short[] count, short[] air, byte[] heightMap) {
|
||||||
super(parent, x, z, ids, count, air, relight, heightMap);
|
super(parent, x, z, ids, count, air, heightMap);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public CharFaweChunk copy(boolean shallow) {
|
public CharFaweChunk copy(boolean shallow) {
|
||||||
ForgeChunk_All copy;
|
ForgeChunk_All copy;
|
||||||
if (shallow) {
|
if (shallow) {
|
||||||
copy = new ForgeChunk_All(getParent(), getX(), getZ(), ids, count, air, relight, heightMap);
|
copy = new ForgeChunk_All(getParent(), getX(), getZ(), ids, count, air, heightMap);
|
||||||
copy.biomes = biomes;
|
copy.biomes = biomes;
|
||||||
copy.chunk = chunk;
|
copy.chunk = chunk;
|
||||||
} else {
|
} else {
|
||||||
copy = new ForgeChunk_All(getParent(), getX(), getZ(), (char[][]) MainUtil.copyNd(ids), count.clone(), air.clone(), relight.clone(), heightMap.clone());
|
copy = new ForgeChunk_All(getParent(), getX(), getZ(), (char[][]) MainUtil.copyNd(ids), count.clone(), air.clone(), heightMap.clone());
|
||||||
copy.biomes = biomes;
|
copy.biomes = biomes;
|
||||||
copy.chunk = chunk;
|
copy.chunk = chunk;
|
||||||
copy.biomes = biomes.clone();
|
copy.biomes = biomes.clone();
|
||||||
|
Loading…
Reference in New Issue
Block a user