Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-10 05:20:04 +01:00
Move block ids over even if there isn't an AddBlocks tag in schematics
Dieser Commit ist enthalten in:
Ursprung
b6fd8af242
Commit
9f2f2fc6c9
@ -119,6 +119,10 @@ public class MCEditSchematicFormat extends SchematicFormat {
|
|||||||
blocks[index] = (short) (((addBlockIds[i] << 4) & 0xF) << 8 + rawBlocks[index++]);
|
blocks[index] = (short) (((addBlockIds[i] << 4) & 0xF) << 8 + rawBlocks[index++]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
for (int i = 0; i < rawBlocks.length; ++i) {
|
||||||
|
blocks[i] = rawBlocks[i];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Need to pull out tile entities
|
// Need to pull out tile entities
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren