public static void registerFuelRods(int id, boolean require) {
if(BigReactors.blockYelloriumFuelRod == null) {
BRConfig.CONFIGURATION.load();
BigReactors.blockYelloriumFuelRod = new BlockFuelRod(Material.iron);
GameRegistry.registerBlock(BigReactors.blockYelloriumFuelRod, ItemBlock.class, "YelloriumFuelRod");
BRConfig.CONFIGURATION.save();
}
}