Industrial Grinder now makes Coal instead of Pulverized Coal, Closes #1511

This commit is contained in:
modmuss50 2018-05-06 12:09:45 +01:00
parent 4c192ec1e8
commit c6d8a8abcb
No known key found for this signature in database
GPG key ID: 773D17BE8BF49C82

View file

@ -48,9 +48,9 @@ public class IndustrialGrinderRecipes extends RecipeMethods {
public static void init() {
//Vanilla ores
if (oresExist("dustSmallThorium")) {
register(getOre("oreCoal"), WATER, 100, 64, getMaterial("coal", 2, Type.DUST), getOre("dustSmallThorium"));
register(getOre("oreCoal"), WATER, 100, 64, getStack(Items.COAL, 2), getOre("dustSmallThorium"));
} else {
register(getOre("oreCoal"), WATER, 100, 64, getMaterial("coal", 2, Type.DUST));
register(getOre("oreCoal"), WATER, 100, 64, getStack(Items.COAL, 2));
}
register(getOre("oreIron"), WATER, 100, 64, getMaterial("iron", 2, Type.DUST), getMaterial("tin", Type.SMALL_DUST), getMaterial("nickel", 1, Type.DUST));