This commit is contained in:
modmuss50 2015-06-29 19:18:26 +01:00
parent 2e7f506115
commit 664252bc96
2 changed files with 6 additions and 2 deletions

View file

@ -21,6 +21,7 @@ import techreborn.init.ModItems;
import techreborn.items.ItemCrushedOre;
import techreborn.items.ItemDustsTiny;
import techreborn.items.ItemDusts;
import techreborn.items.ItemGems;
import techreborn.items.ItemIngots;
import techreborn.items.ItemParts;
import techreborn.items.ItemPlates;
@ -181,7 +182,7 @@ public class RecipesIC2 implements ICompatModule {
Recipes.macerator.addRecipe(new RecipeInputOreDict("oreEmerald"), null, ItemDusts.getDustByName("emerald", 2));
}
if (OreDictionary.doesOreNameExist("oreRuby")) {
Recipes.macerator.addRecipe(new RecipeInputOreDict("oreRuby"), null, ItemDusts.getDustByName("ruby", 2));
Recipes.macerator.addRecipe(new RecipeInputOreDict("oreRuby"), null, ItemGems.getGemByName("ruby", 2));
}
if (OreDictionary.doesOreNameExist("oreSapphire")) {
Recipes.macerator.addRecipe(new RecipeInputOreDict("oreSapphire"), null, ItemDusts.getDustByName("sapphire", 2));
@ -248,6 +249,9 @@ public class RecipesIC2 implements ICompatModule {
if (OreDictionary.doesOreNameExist("blockBasalt")) {
Recipes.macerator.addRecipe(new RecipeInputOreDict("blockBasalt"), null, ItemDusts.getDustByName("basalt", 2));
}
if (OreDictionary.doesOreNameExist("gemRuby")) {
Recipes.macerator.addRecipe(new RecipeInputOreDict("gemRuby"), null, ItemDusts.getDustByName("ruby", 2));
}
}
static void addTROreWashingRecipes() {

View file

@ -157,7 +157,7 @@ public class ModRecipes {
CraftingHelper.addShapedOreRecipe(ItemParts.getPartByName("diamondSawBlade"),
"DSD", "S S", "DSD",
'S', "plateSteel",
'D', ItemDusts.getDustByName("diamond"));
'D', "dustDiamond");
CraftingHelper.addShapedOreRecipe(new ItemStack(ModItems.lapotronicOrb),
"LLL", "LPL", "LLL",