Fixed incorrect storage block recipes
This commit is contained in:
parent
663b5f2f75
commit
bb98d76eea
1 changed files with 1 additions and 4 deletions
|
@ -75,7 +75,7 @@ public class ModRecipes {
|
||||||
'A', "ingot" + name.substring(0, 1).toUpperCase() + name.substring(1));
|
'A', "ingot" + name.substring(0, 1).toUpperCase() + name.substring(1));
|
||||||
}
|
}
|
||||||
|
|
||||||
CraftingHelper.addShapedOreRecipe(new ItemStack(ModBlocks.storage, 1, 3),
|
CraftingHelper.addShapedOreRecipe(BlockStorage.getStorageBlockByName("sapphire"),
|
||||||
"AAA", "AAA", "AAA",
|
"AAA", "AAA", "AAA",
|
||||||
'A', "gemSapphire");
|
'A', "gemSapphire");
|
||||||
|
|
||||||
|
@ -83,9 +83,6 @@ public class ModRecipes {
|
||||||
"AAA", "AAA", "AAA",
|
"AAA", "AAA", "AAA",
|
||||||
'A', "gemRuby");
|
'A', "gemRuby");
|
||||||
|
|
||||||
CraftingHelper.addShapedOreRecipe(new ItemStack(ModBlocks.storage, 1, 5),
|
|
||||||
"AAA", "AAA", "AAA",
|
|
||||||
'A', "gemGreenSapphire");
|
|
||||||
|
|
||||||
CraftingHelper.addShapedOreRecipe(new ItemStack(ModItems.parts, 1, 40),
|
CraftingHelper.addShapedOreRecipe(new ItemStack(ModItems.parts, 1, 40),
|
||||||
"PLP", "RGB", "PYP",
|
"PLP", "RGB", "PYP",
|
||||||
|
|
Loading…
Reference in a new issue