Fix gem tools and armour recipes

This commit is contained in:
ProfessorProspector 2016-10-16 13:12:05 -07:00 committed by modmuss50
parent c9ff3330ca
commit 3073a19cfa
No known key found for this signature in database
GPG key ID: 203A5ED4D3E48BEA

View file

@ -3215,23 +3215,23 @@ public class ModRecipes {
static void addGemToolRecipes(ItemStack gemsword, ItemStack gempick, ItemStack gemaxe, ItemStack gemHoe, static void addGemToolRecipes(ItemStack gemsword, ItemStack gempick, ItemStack gemaxe, ItemStack gemHoe,
ItemStack gemspade, ItemStack gemhelmet, ItemStack gemchestplate, ItemStack gemleggings, ItemStack gemboots, ItemStack gemspade, ItemStack gemhelmet, ItemStack gemchestplate, ItemStack gemleggings, ItemStack gemboots,
String gem) { String gem) {
CraftingHelper.addShapedOreRecipe(gemsword, " G ", " G ", " S ", 'S', Items.STICK, 'G', gem); CraftingHelper.addShapedOreRecipe(gemsword, "G", "G", "S", 'S', Items.STICK, 'G', gem);
CraftingHelper.addShapedOreRecipe(gempick, "GGG", " S ", " S ", 'S', Items.STICK, 'G', gem); CraftingHelper.addShapedOreRecipe(gempick, "GGG", " S ", " S ", 'S', Items.STICK, 'G', gem);
CraftingHelper.addShapedOreRecipe(gemaxe, " GG", " SG", " S ", 'S', Items.STICK, 'G', gem); CraftingHelper.addShapedOreRecipe(gemaxe, "GG", "SG", "S ", 'S', Items.STICK, 'G', gem);
CraftingHelper.addShapedOreRecipe(gemHoe, " GG", " S ", " S ", 'S', Items.STICK, 'G', gem); CraftingHelper.addShapedOreRecipe(gemHoe, "GG", "S ", "S ", 'S', Items.STICK, 'G', gem);
CraftingHelper.addShapedOreRecipe(gemspade, " G ", " S ", " S ", 'S', Items.STICK, 'G', gem); CraftingHelper.addShapedOreRecipe(gemspade, "G", "S", "S", 'S', Items.STICK, 'G', gem);
CraftingHelper.addShapedOreRecipe(gemhelmet, "GGG", "G G", " ", 'G', gem); CraftingHelper.addShapedOreRecipe(gemhelmet, "GGG", "G G", 'G', gem);
CraftingHelper.addShapedOreRecipe(gemchestplate, "G G", "GGG", "GGG", 'G', gem); CraftingHelper.addShapedOreRecipe(gemchestplate, "G G", "GGG", "GGG", 'G', gem);
CraftingHelper.addShapedOreRecipe(gemleggings, "GGG", "G G", "G G", 'G', gem); CraftingHelper.addShapedOreRecipe(gemleggings, "GGG", "G G", "G G", 'G', gem);
CraftingHelper.addShapedOreRecipe(gemboots, " ", "G G", "G G", 'G', gem); CraftingHelper.addShapedOreRecipe(gemboots, "G G", "G G", 'G', gem);
} }
public static ItemStack getBucketWithFluid(Fluid fluid) { public static ItemStack getBucketWithFluid(Fluid fluid) {