Update some texture paths, fix ore harvestibility, and fix ore recipes

This commit is contained in:
TheDoctorSoda 2016-03-13 22:25:06 -07:00
parent 72b2f01b9a
commit 801b497d86
29 changed files with 1281 additions and 1 deletions

View file

@ -694,6 +694,8 @@ public class ModRecipes {
GameRegistry.addSmelting(ItemDusts.getDustByName("gold", 1), new ItemStack(Items.gold_ingot), 1F);
GameRegistry.addSmelting(ItemParts.getPartByName("rubberSap"), ItemParts.getPartByName("rubber"), 1F);
GameRegistry.addSmelting(new ItemStack(Items.iron_ingot), ItemIngots.getIngotByName("refinediron"), 1F);
GameRegistry.addSmelting(BlockOre2.getOreByName("copper"), ItemIngots.getIngotByName("copper"), 1F);
GameRegistry.addSmelting(BlockOre2.getOreByName("tin"), ItemIngots.getIngotByName("tin"), 1F);
Core.logHelper.info("Smelting Recipes Added");
}