Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-08 04:20:06 +01:00
Dieser Commit ist enthalten in:
Ursprung
ccfe274ff5
Commit
fecb380d44
@ -192,11 +192,11 @@ public class BukkitChunk_1_13 extends IntFaweChunk<Chunk, BukkitQueue_1_13> {
|
|||||||
|
|
||||||
byte[] newBlockBytes = newBlockLight.asBytes();
|
byte[] newBlockBytes = newBlockLight.asBytes();
|
||||||
byte[] blockLightBytes = blockLight.asBytes();
|
byte[] blockLightBytes = blockLight.asBytes();
|
||||||
System.arraycopy(blockLightBytes, 0, newBlockBytes, 0, 2048);
|
for (int i = 0; i < 2048; i++) newBlockBytes[i] = blockLightBytes[i];
|
||||||
if (skyLight != null) {
|
if (skyLight != null) {
|
||||||
byte[] newSkyBytes = newSkyLight.asBytes();
|
byte[] newSkyBytes = newSkyLight.asBytes();
|
||||||
byte[] skyLightBytes = skyLight.asBytes();
|
byte[] skyLightBytes = skyLight.asBytes();
|
||||||
System.arraycopy(skyLightBytes, 0, newSkyBytes, 0, 2048);
|
for (int i = 0; i < 2048; i++) newSkyBytes[i] = skyLightBytes[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
// Copy counters
|
// Copy counters
|
||||||
@ -241,7 +241,7 @@ public class BukkitChunk_1_13 extends IntFaweChunk<Chunk, BukkitQueue_1_13> {
|
|||||||
Object[] currArray = ((Object[]) BukkitQueue_1_13.fieldLinearBlocks.get(currentPalette));
|
Object[] currArray = ((Object[]) BukkitQueue_1_13.fieldLinearBlocks.get(currentPalette));
|
||||||
Object[] newArray = ((Object[]) BukkitQueue_1_13.fieldLinearBlocks.get(newPalette));
|
Object[] newArray = ((Object[]) BukkitQueue_1_13.fieldLinearBlocks.get(newPalette));
|
||||||
BukkitQueue_1_13.fieldLinearIndex.set(newPalette, BukkitQueue_1_13.fieldLinearIndex.get(currentPalette));
|
BukkitQueue_1_13.fieldLinearIndex.set(newPalette, BukkitQueue_1_13.fieldLinearIndex.get(currentPalette));
|
||||||
System.arraycopy(currArray, 0, newArray, 0, newArray.length);
|
for (int i = 0; i < newArray.length; i++) newArray[i] = currArray[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
BukkitQueue_1_13.fieldPalette.set(paletteBlock, newPalette);
|
BukkitQueue_1_13.fieldPalette.set(paletteBlock, newPalette);
|
||||||
|
@ -346,8 +346,6 @@ public class BlockState implements BlockStateHolder<BlockState>, FawePattern {
|
|||||||
return equalsFuzzy((BlockState) obj);
|
return equalsFuzzy((BlockState) obj);
|
||||||
}
|
}
|
||||||
|
|
||||||
private Integer hashCodeCache = null;
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
return getOrdinal();
|
return getOrdinal();
|
||||||
|
@ -280,7 +280,7 @@ public class BlockType implements FawePattern, Keyed {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
return this.id.hashCode();
|
return settings.internalId;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren