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:
Sebastian Hartte 2016-11-02 23:34:04 +01:00
parent 2f8013a49b
commit c3700737c3
1 changed files with 1 additions and 1 deletions

View File

@ -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 )
{