mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-06-11 20:13:55 +00:00
Move block ids over even if there isn't an AddBlocks tag in schematics
This commit is contained in:
@ -119,6 +119,10 @@ public class MCEditSchematicFormat extends SchematicFormat {
|
||||
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
|
||||
|
Reference in New Issue
Block a user