Fixed crane frame recipe conflict with boots

This commit is contained in:
Henry Mao 2013-02-19 19:56:06 +08:00
parent d9f4c6146c
commit 5e59176c41
3 changed files with 5 additions and 4 deletions

View file

@ -1 +1 @@
82
85

View file

@ -73,4 +73,5 @@ x AssemblyLine_v0.2.4.64.jar AssemblyLine_v0.2.4.64_api.zip
@ AssemblyLine_v0.2.6.79.jar AssemblyLine_v0.2.6.79_api.zip
@ AssemblyLine_v0.2.7.80.jar AssemblyLine_v0.2.7.80_api.zip
@ AssemblyLine_v0.2.7.81.jar AssemblyLine_v0.2.7.81_api.zip
* AssemblyLine_v0.2.7.82.jar AssemblyLine_v0.2.7.82_api.zip
@ AssemblyLine_v0.2.7.82.jar AssemblyLine_v0.2.7.82_api.zip
* AssemblyLine_v0.2.7.85.jar AssemblyLine_v0.2.7.85_api.zip

View file

@ -152,8 +152,8 @@ public class AssemblyLine
GameRegistry.addRecipe(new ShapedOreRecipe(blockCraneController, new Object[] { "SFS", "MCM", "SMS", 'F', blockCraneFrame, 'S', "plateSteel", 'C', "advancedCircuit", 'I', "ingotSteel", 'M', "motor" }));
// Crane Frame
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(blockCraneFrame, 5), new Object[] { "I I", "I I", 'I', Item.ingotIron }));
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(blockCraneFrame, 5), new Object[] { "I I", "I I", 'I', "ingotBronze" }));
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(blockCraneFrame, 4), new Object[] { "ISI", "ISI", 'I', Item.ingotIron, 'S', Item.stick }));
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(blockCraneFrame, 4), new Object[] { "ISI", "ISI", 'I', "ingotBronze", 'S', Item.stick }));
// Armbot
GameRegistry.addRecipe(new ShapedOreRecipe(blockArmbot, new Object[] { "II ", "SIS", "MCM", 'S', "plateSteel", 'C', "advancedCircuit", 'I', "ingotSteel", 'M', "motor" }));