Repair recipes - Fixed name

The wrapper was not adding the '.name' suffix
This commit is contained in:
Emmanuel BENOîT 2016-07-23 10:06:52 +02:00
parent 9d64709e5a
commit b7448b213d

View file

@ -60,7 +60,7 @@ public class RRepairRecipeWrapper
@Override @Override
public String getName( ) public String getName( )
{ {
return this.item.getUnlocalizedName( ); return this.item.getUnlocalizedName( ) + ".name";
} }