Massive Localization Update.

This commit is contained in:
AlgorithmX2
2014-01-30 12:54:32 -06:00
parent 6583ce8626
commit c981c637f9
10 changed files with 199 additions and 213 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ public class ToolBiometricCard extends AEBaseItem
{
NBTTagCompound tag = Platform.openNbtData( is );
String username = tag.getString( "username" );
return username != null ? super.getItemDisplayName( is ) + " - " + GuiText.Encoded.getLocal() : super.getItemDisplayName( is );
return username.length() > 0 ? super.getItemDisplayName( is ) + " - " + GuiText.Encoded.getLocal() : super.getItemDisplayName( is );
}
@Override