Added better checks to ore dict, Closes #894
This commit is contained in:
parent
6aa8fde64a
commit
2ec7340383
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ public abstract class RecipeMethods {
|
|||
|
||||
static boolean oresExist(String... names) {
|
||||
for (String name : names) {
|
||||
if (!OreDictionary.doesOreNameExist(name)) {
|
||||
if (OreDictionary.getOres(name).isEmpty()) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue