Fix small issue with ore dict utils
This commit is contained in:
parent
d267bb4e09
commit
c926f41237
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ public abstract class RecipeMethods {
|
|||
if (!OreDictionary.doesOreNameExist(name)) {
|
||||
return false;
|
||||
}
|
||||
if(!OreDictionary.getOres(name).isEmpty()){
|
||||
if(OreDictionary.getOres(name).isEmpty()){
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue