Recipes can now show in the recipe book

This commit is contained in:
modmuss50 2017-06-15 11:01:33 +01:00
parent bdcb8bf327
commit 5536a6cd94
No known key found for this signature in database
GPG key ID: 203A5ED4D3E48BEA
4 changed files with 43 additions and 7 deletions

View file

@ -314,14 +314,14 @@ public class CraftingTableRecipes extends RecipeMethods {
ItemStack leggings,
ItemStack boots,
String material) {
registerShaped(sword, "G", "G", "S", 'S', Items.STICK, 'G', material);
registerShaped(sword, " G ", " G ", " S ", 'S', Items.STICK, 'G', material);
registerShaped(pickaxe, "GGG", " S ", " S ", 'S', Items.STICK, 'G', material);
registerShaped(axe, "GG", "GS", " S", 'S', Items.STICK, 'G', material);
registerShaped(hoe, "GG", " S", " S", 'S', Items.STICK, 'G', material);
registerShaped(spade, "G", "S", "S", 'S', Items.STICK, 'G', material);
registerShaped(helmet, "GGG", "G G", 'G', material);
registerShaped(axe, "GG ", "GS ", " S ", 'S', Items.STICK, 'G', material);
registerShaped(hoe, "GG ", " S ", " S ", 'S', Items.STICK, 'G', material);
registerShaped(spade, " G ", " S ", " S ", 'S', Items.STICK, 'G', material);
registerShaped(helmet, "GGG", "G G", " ", 'G', material);
registerShaped(chestplate, "G G", "GGG", "GGG", 'G', material);
registerShaped(leggings, "GGG", "G G", "G G", 'G', material);
registerShaped(boots, "G G", "G G", 'G', material);
registerShaped(boots, " ", "G G", "G G", 'G', material);
}
}