Merge pull request from Techjar/patch-2

I don't think pipe recipes should have to be in the middle row of the crafting grid.
This commit is contained in:
SirSengir 2012-09-09 05:12:02 -07:00
commit d6c917b5b7

View file

@ -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) {