Galaxy Space [Addon for GalactiCraft]

Galaxy Space [Addon for GalactiCraft]

2M Downloads

Fix cobalt ore name in upgrade modules recipe

onyn opened this issue ยท 1 comments

commented

There is no such item with ore name "ingotCobaltum":

RecipeUtil.addRecipe(new ItemStack(GSItems.UPGRADES, 1, 0), new Object[] { " Z ", "XYX", "BCB", 'X', new ItemStack(GCBlocks.aluminumWire, 1, 1), 'Y', BasicItems.MODULE_BASE.getItemStack(), 'Z', BasicItems.DOLOMITE_CRYSTAL.getItemStack(), 'C', BasicItems.VOLCANIC_STONE.getItemStack(), 'B', "ingotCobaltum" });
RecipeUtil.addRecipe(new ItemStack(GSItems.UPGRADES, 1, 1), new Object[] { " Z ", "XYX", "BCB", 'X', new ItemStack(GCBlocks.aluminumWire, 1, 1), 'Y', BasicItems.MODULE_BASE.getItemStack(), 'Z', BasicItems.DOLOMITE_CRYSTAL.getItemStack(), 'C', BasicItems.UNKNOW_CRYSTAL.getItemStack(), 'B', "ingotMagnesium" });
RecipeUtil.addRecipe(new ItemStack(GSItems.UPGRADES, 1, 2), new Object[] { " Z ", "XYX", "BCB", 'X', new ItemStack(GCBlocks.aluminumWire, 1, 1), 'Y', BasicItems.MODULE_BASE.getItemStack(), 'Z', new ItemStack(AsteroidsItems.canisterLN2, 1, 1), 'C', BasicItems.WAFER_MODERN.getItemStack(), 'B', "ingotNickel" });
RecipeUtil.addRecipe(new ItemStack(GSItems.UPGRADES, 1, 3), new Object[] { " Z ", "XYX", "BCB", 'X', new ItemStack(GCBlocks.aluminumWire, 1, 1), 'Y', BasicItems.MODULE_BASE.getItemStack(), 'Z', new ItemStack(VenusItems.basicItem, 1, 4), 'C', BasicItems.WAFER_MODERN.getItemStack(), 'B', "ingotCobaltum" });

But there is "ingotCobalt":

OreDictionary.registerOre("ingotCobalt", new ItemStack(GSItems.INGOTS, 1, 0));

commented

Fixed in 2.0.15