Added better checks to ore dict, Closes #894

This commit is contained in:
modmuss50 2017-01-08 21:58:32 +00:00
parent 6aa8fde64a
commit 2ec7340383
No known key found for this signature in database
GPG key ID: 203A5ED4D3E48BEA

View file

@ -60,7 +60,7 @@ public abstract class RecipeMethods {
static boolean oresExist(String... names) { static boolean oresExist(String... names) {
for (String name : names) { for (String name : names) {
if (!OreDictionary.doesOreNameExist(name)) { if (OreDictionary.getOres(name).isEmpty()) {
return false; return false;
} }
} }