Added messages for recipes
This commit is contained in:
parent
226b02e2c1
commit
5edb3f813a
1 changed files with 3 additions and 0 deletions
|
@ -185,6 +185,7 @@ public class AssemblyLine
|
||||||
|
|
||||||
private void createVanillaRecipes()
|
private void createVanillaRecipes()
|
||||||
{
|
{
|
||||||
|
System.out.println("No crafting ingredient source found. Creating cheap-o vanilla recipes.");
|
||||||
// Armbot
|
// Armbot
|
||||||
GameRegistry.addRecipe(new ShapedOreRecipe(blockArmbot, new Object[] { "II ", "SIS", "MCM", 'S', "ingotIron", 'C', Item.redstoneRepeater, 'I', "ingotIron", 'M', Block.pistonBase }));
|
GameRegistry.addRecipe(new ShapedOreRecipe(blockArmbot, new Object[] { "II ", "SIS", "MCM", 'S', "ingotIron", 'C', Item.redstoneRepeater, 'I', "ingotIron", 'M', Block.pistonBase }));
|
||||||
// Disk
|
// Disk
|
||||||
|
@ -205,6 +206,7 @@ public class AssemblyLine
|
||||||
|
|
||||||
private void createUERecipes()
|
private void createUERecipes()
|
||||||
{
|
{
|
||||||
|
System.out.println("BasicComponents Found...adding UE recipes for Assembly Line.");
|
||||||
// Armbot
|
// Armbot
|
||||||
GameRegistry.addRecipe(new ShapedOreRecipe(blockArmbot, new Object[] { "II ", "SIS", "MCM", 'S', "plateSteel", 'C', "advancedCircuit", 'I', "ingotSteel", 'M', "motor" }));
|
GameRegistry.addRecipe(new ShapedOreRecipe(blockArmbot, new Object[] { "II ", "SIS", "MCM", 'S', "plateSteel", 'C', "advancedCircuit", 'I', "ingotSteel", 'M', "motor" }));
|
||||||
// Disk
|
// Disk
|
||||||
|
@ -225,6 +227,7 @@ public class AssemblyLine
|
||||||
|
|
||||||
private void createIC2Recipes()
|
private void createIC2Recipes()
|
||||||
{
|
{
|
||||||
|
System.out.println("IC2 Found...adding IC2 recipes for Assembly Line.");
|
||||||
// Armbot
|
// Armbot
|
||||||
Ic2Recipes.addCraftingRecipe(new ItemStack(blockArmbot, 1), new Object[] { "II ", "SIS", "MCM", 'S', "advancedAlloy", 'C', "electronicCircuit", 'I', "ingotRefinedIron", 'M', "generator" });
|
Ic2Recipes.addCraftingRecipe(new ItemStack(blockArmbot, 1), new Object[] { "II ", "SIS", "MCM", 'S', "advancedAlloy", 'C', "electronicCircuit", 'I', "ingotRefinedIron", 'M', "generator" });
|
||||||
// Disk
|
// Disk
|
||||||
|
|
Loading…
Reference in a new issue