Fixed crane frame recipe conflict with boots
This commit is contained in:
parent
d9f4c6146c
commit
5e59176c41
3 changed files with 5 additions and 4 deletions
|
@ -1 +1 @@
|
||||||
82
|
85
|
||||||
|
|
3
info.txt
3
info.txt
|
@ -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.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.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.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
|
||||||
|
|
|
@ -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" }));
|
GameRegistry.addRecipe(new ShapedOreRecipe(blockCraneController, new Object[] { "SFS", "MCM", "SMS", 'F', blockCraneFrame, 'S', "plateSteel", 'C', "advancedCircuit", 'I', "ingotSteel", 'M', "motor" }));
|
||||||
|
|
||||||
// Crane Frame
|
// 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, 4), new Object[] { "ISI", "ISI", 'I', Item.ingotIron, 'S', Item.stick }));
|
||||||
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', "ingotBronze", 'S', Item.stick }));
|
||||||
|
|
||||||
// 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" }));
|
||||||
|
|
Loading…
Reference in a new issue