This commit is contained in:
modmuss50 2018-05-20 15:43:46 +01:00
parent 8ef39d18e8
commit 66bb38543e
No known key found for this signature in database
GPG key ID: 773D17BE8BF49C82

View file

@ -113,10 +113,10 @@ public class AlloySmelterRecipes extends RecipeMethods {
}
// Blue Alloy
if (OreUtil.doesOreExistAndValid("ingotBlueAlloy")) {
if (oresExist("ingotBlueAlloy", "dustTeslatite")) {
ItemStack blueAlloyStack = getOre("ingotBlueAlloy");
blueAlloyStack.setCount(1);
RecipeHandler.addRecipe(new AlloySmelterRecipe(ItemDusts.getDustByName("teslatite", 4),
RecipeHandler.addRecipe(new AlloySmelterRecipe(getOre("dustTeslatite", 4),
ItemIngots.getIngotByName("silver", 1), blueAlloyStack, 200, 16));
}