Industrial Grinder now makes Coal instead of Pulverized Coal, Closes #1511
This commit is contained in:
parent
4c192ec1e8
commit
c6d8a8abcb
1 changed files with 2 additions and 2 deletions
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue