Re-enables this IF-branch for ore dictionary tokens in the recipe files, which was inactive due to the recipe files all using lower-case verbs.
This commit is contained in:
@@ -79,7 +79,7 @@ public class Ingredient implements IIngredient
|
||||
{
|
||||
int sel = 0;
|
||||
|
||||
if( this.nameSpace.equals( "oreDictionary" ) )
|
||||
if( this.nameSpace.equalsIgnoreCase( "oreDictionary" ) )
|
||||
{
|
||||
if( parts.length == 3 )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user