Fix some final issues with the slabs + add recipes

This commit is contained in:
modmuss50 2018-06-09 11:32:02 +01:00
parent a567139ffd
commit 0536ef08a0
No known key found for this signature in database
GPG key ID: 773D17BE8BF49C82
3 changed files with 15 additions and 3 deletions

View file

@ -284,7 +284,10 @@ public class CraftingTableRecipes extends RecipeMethods {
registerShaped(getMaterial(part, Type.PART), " O ", "OIO", " O ", 'I', getStack(Items.IRON_INGOT), 'O', "ingot" + StringUtils.toFirstCapital(part.replace("Gear", "")));
}
}
registerShaped(new ItemStack(ModBlocks.RUBBER_LOG_SLAB_HALF), "WWW", 'W', new ItemStack(ModBlocks.RUBBER_PLANKS));
registerShaped(new ItemStack(ModBlocks.RUBBER_LOG_STAIR), "W ", "WW ", "WWW", 'W', new ItemStack(ModBlocks.RUBBER_PLANKS));
Core.logHelper.info("Crafting Table Recipes Added");
}