Fixes issue with small dust recipes, closes #1005
(cherry picked from commit 80a387b)
This commit is contained in:
parent
fe9d1defdc
commit
35e104d901
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue