parent
3ea0d2541a
commit
aa2d15c109
1 changed files with 18 additions and 1 deletions
|
@ -111,6 +111,23 @@ public class ModRecipes {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
IndustrialSawmillRecipes.init();
|
IndustrialSawmillRecipes.init();
|
||||||
|
|
||||||
|
//Let it be in postInit to be sure that oredict already there
|
||||||
|
if (OreUtil.doesOreExistAndValid("stoneMarble")) {
|
||||||
|
ItemStack marbleStack = getOre("stoneMarble");
|
||||||
|
marbleStack.setCount(1);
|
||||||
|
RecipeHandler.addRecipe(new GrinderRecipe(
|
||||||
|
marbleStack, ItemDusts.getDustByName("marble"),
|
||||||
|
120, 10));
|
||||||
|
}
|
||||||
|
if (OreUtil.doesOreExistAndValid("stoneBasalt")) {
|
||||||
|
ItemStack marbleStack = getOre("stoneBasalt");
|
||||||
|
marbleStack.setCount(1);
|
||||||
|
RecipeHandler.addRecipe(new GrinderRecipe(
|
||||||
|
marbleStack, ItemDusts.getDustByName("basalt"),
|
||||||
|
120, 10));
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void addCompressorRecipes() {
|
private static void addCompressorRecipes() {
|
||||||
|
@ -229,7 +246,7 @@ public class ModRecipes {
|
||||||
new ItemStack(Blocks.END_STONE),
|
new ItemStack(Blocks.END_STONE),
|
||||||
ItemDusts.getDustByName("endstone"),
|
ItemDusts.getDustByName("endstone"),
|
||||||
300, 16));
|
300, 16));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void addReactorRecipes() {
|
static void addReactorRecipes() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue