public static ItemStack registerOres(int i, boolean b) {
BRConfig.CONFIGURATION.load();
if (blockYelloriteOre == null) {
blockYelloriteOre = new BlockBROre();
GameRegistry.registerBlock(BigReactors.blockYelloriteOre, ItemBlockBigReactors.class, "YelloriteOre");
ItemStack yelloriteStack = new ItemStack(blockYelloriteOre, 1);
OreDictionary.registerOre("oreYellorite", yelloriteStack);
OreDictionary.registerOre("oreYellorium", yelloriteStack); // For convenience of mods which fiddle with recipes
}