Fixes issue with small dust recipes, closes #1005

(cherry picked from commit 80a387b)
This commit is contained in:
modmuss50 2017-03-13 10:30:37 +00:00
parent fe9d1defdc
commit 35e104d901
No known key found for this signature in database
GPG key ID: 203A5ED4D3E48BEA

View file

@ -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) {