Overhauled Schematic Importing and Exporting #56

Merged
SenseiKiwi merged 8 commits from master into master 2013-07-30 22:29:38 +00:00
Showing only changes of commit 0c8d012f50 - Show all commits

View File

@@ -144,8 +144,7 @@ public class DungeonSchematic extends Schematic {
//Filter out mod blocks except some of our own //Filter out mod blocks except some of our own
//This comes after ID standardization because the mod block filter relies on standardized IDs //This comes after ID standardization because the mod block filter relies on standardized IDs
standardizer.addFilter(new ModBlockFilter(MAX_VANILLA_BLOCK_ID, MOD_BLOCK_FILTER_EXCEPTIONS, standardizer.addFilter(new ModBlockFilter(MAX_VANILLA_BLOCK_ID, MOD_BLOCK_FILTER_EXCEPTIONS,
(short) properties.FabricBlockID, (byte) 0)); STANDARD_FABRIC_OF_REALITY_ID, (byte) 0));
applyFilter(standardizer); applyFilter(standardizer);
} }