Pump Crafting change
This commit is contained in:
parent
f47c3b528c
commit
ec8971b627
1 changed files with 6 additions and 5 deletions
|
@ -275,12 +275,13 @@ public class LiquidMechanics extends DummyModContainer
|
||||||
'@', Block.stone });
|
'@', Block.stone });
|
||||||
|
|
||||||
// pump
|
// pump
|
||||||
GameRegistry.addRecipe(new ItemStack(blockMachine, 1, 0), new Object[] {
|
CraftingManager.getInstance().getRecipeList().add(new ShapedOreRecipe(new ItemStack(blockMachine, 1, 0), new Object[] {
|
||||||
"@T@", "BPB", "@P@",
|
"C@C", "BMB", "@X@",
|
||||||
'@', new ItemStack(Item.ingotIron, 2),
|
'@', "plateSteel",
|
||||||
|
'X', new ItemStack(blockPipe, 1, ColorCode.NONE.ordinal()),
|
||||||
'B', new ItemStack(itemParts, 1, Parts.Valve.ordinal()),
|
'B', new ItemStack(itemParts, 1, Parts.Valve.ordinal()),
|
||||||
'P', new ItemStack(Block.pistonBase),
|
'C',"basicCircuit",
|
||||||
'T', new ItemStack(itemParts, 1, Parts.Tank.ordinal()) });
|
'M', "motor" }));
|
||||||
|
|
||||||
// release valve
|
// release valve
|
||||||
GameRegistry.addRecipe(new ItemStack(blockReleaseValve, 1), new Object[] {
|
GameRegistry.addRecipe(new ItemStack(blockReleaseValve, 1), new Object[] {
|
||||||
|
|
Loading…
Reference in a new issue