Fix ingot->dust dupe bug

Fix RC version not working in dev
This commit is contained in:
modmuss50 2016-11-04 20:09:35 +00:00
parent 19f1e71ac4
commit 271a8f2b2b
No known key found for this signature in database
GPG key ID: 203A5ED4D3E48BEA
2 changed files with 4 additions and 2 deletions

View file

@ -453,7 +453,9 @@ public class ModRecipes {
continue;
}
dust = dust.copy();
dust.stackSize = 2;
if(ore){
dust.stackSize = 2;
}
RecipeHandler.addRecipe(new GrinderRecipe(oreStack, dust, ore ? 270 : 200, ore ? 31 : 22));
}
}