Remove some config settings that break things, fixes #732

This commit is contained in:
modmuss50 2016-10-08 21:56:24 +01:00
parent ee9f48bc84
commit fdb506ad15
No known key found for this signature in database
GPG key ID: 773D17BE8BF49C82
3 changed files with 32 additions and 22 deletions

View file

@ -448,10 +448,11 @@ public class ModRecipes {
boolean ore = data[0].equals("ore");
Core.logHelper.debug("Ore: " + data[1]);
ItemStack dust = getDictOreOrNull(joinDictName("dust", data[1]), ore ? 2 : 1).copy();
ItemStack dust = getDictOreOrNull(joinDictName("dust", data[1]), ore ? 2 : 1);
if (dust == null || dust.getItem() == null) {
continue;
}
dust = dust.copy();
dust.stackSize = 2;
RecipeHandler.addRecipe(new GrinderRecipe(oreStack, dust, ore ? 270 : 200, ore ? 31 : 22));
}