Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-12-26 19:02:36 +01:00
Update Upstream
40ded93 Fix loading legacy invalid blocks
Dieser Commit ist enthalten in:
Ursprung
22f11abce8
Commit
a183425642
@ -249,7 +249,10 @@ public class MCEditSchematicReader extends NBTSchematicReader {
|
|||||||
int index = y * width * length + z * width + x;
|
int index = y * width * length + z * width + x;
|
||||||
BlockVector3 pt = BlockVector3.at(x, y, z);
|
BlockVector3 pt = BlockVector3.at(x, y, z);
|
||||||
BaseBlock state = Optional.ofNullable(tileEntityBlocks.get(pt))
|
BaseBlock state = Optional.ofNullable(tileEntityBlocks.get(pt))
|
||||||
.orElseGet(() -> getBlockState(blocks[index], blockData[index]).toBaseBlock());
|
.orElseGet(() -> {
|
||||||
|
BlockState blockState = getBlockState(blocks[index], blockData[index]);
|
||||||
|
return blockState == null ? null : blockState.toBaseBlock();
|
||||||
|
});
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (state != null) {
|
if (state != null) {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren