Should fix crash with industrial foregoing

This commit is contained in:
modmuss50 2017-07-10 18:32:34 +01:00
parent 2206c7688a
commit b4f1031d44
No known key found for this signature in database
GPG key ID: 773D17BE8BF49C82

View file

@ -122,6 +122,9 @@ public abstract class RecipeMethods {
if (!OreDictionary.doesOreNameExist(name)) {
return false;
}
if(!OreDictionary.getOres(name).isEmpty()){
return false;
}
}
return true;
}