I don't think pipe recipes should have to be in the middle row of the crafting grid.
This commit is contained in:
parent
30aef0704c
commit
1bf15b06cd
1 changed files with 1 additions and 1 deletions
|
@ -411,7 +411,7 @@ public class BuildCraftTransport {
|
|||
|
||||
if (ingredient1 != null && ingredient2 != null && ingredient3 != null) {
|
||||
recipe.result = new ItemStack(res, 8);
|
||||
recipe.input = new Object[] { " ", "ABC", " ", Character.valueOf('A'), ingredient1, Character.valueOf('B'), ingredient2, Character.valueOf('C'), ingredient3 };
|
||||
recipe.input = new Object[] { "ABC", Character.valueOf('A'), ingredient1, Character.valueOf('B'), ingredient2, Character.valueOf('C'), ingredient3 };
|
||||
|
||||
pipeRecipes.add(recipe);
|
||||
} else if (ingredient1 != null && ingredient2 != null) {
|
||||
|
|
Loading…
Reference in a new issue