From 35e104d9015880e5430f8c6abac0a42d0568fabb Mon Sep 17 00:00:00 2001 From: modmuss50 Date: Mon, 13 Mar 2017 10:30:37 +0000 Subject: [PATCH] Fixes issue with small dust recipes, closes #1005 (cherry picked from commit 80a387b) --- src/main/java/techreborn/init/recipes/RecipeMethods.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/techreborn/init/recipes/RecipeMethods.java b/src/main/java/techreborn/init/recipes/RecipeMethods.java index aafa3dd04..5919a1765 100644 --- a/src/main/java/techreborn/init/recipes/RecipeMethods.java +++ b/src/main/java/techreborn/init/recipes/RecipeMethods.java @@ -76,7 +76,7 @@ public abstract class RecipeMethods { if (type == Type.DUST) { object = "dust" + StringUtils.toFirstCapital(name); } else if (type == Type.SMALL_DUST) { - object = "dust" + StringUtils.toFirstCapital(name); + object = "smallDust" + StringUtils.toFirstCapital(name); } else if (type == Type.INGOT) { object = "ingot" + StringUtils.toFirstCapital(name); } else if (type == Type.GEM) {