public static void registerCreativeParts(int id, boolean require) {
BRConfig.CONFIGURATION.load();
boolean regCreativeParts = BRConfig.CONFIGURATION.get("General", "registerCreativeMultiblockParts", true, "If true, creative parts for reactors, turbines and other multiblocks will be registered.").getBoolean(true);
if(regCreativeParts && BigReactors.blockMultiblockCreativePart == null) {
BigReactors.blockMultiblockCreativePart = new BlockMBCreativePart(Material.iron);
GameRegistry.registerBlock(BigReactors.blockMultiblockCreativePart, ItemBlockBigReactors.class, "BRMultiblockCreativePart");
}
BRConfig.CONFIGURATION.save();
}