Fixed Localization for Lumen and Automatic

Also cleaned up a stray import.
This commit is contained in:
AlgorithmX2
2014-09-10 11:01:43 -05:00
parent 814062fc20
commit 38d9f73e8a
3 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ public class ItemPaintBall extends AEBaseItem
public String getExtraName(ItemStack is)
{
return (is.getItemDamage() >= 20 ? GuiText.Lumen + " " : "") + getColor( is );
return (is.getItemDamage() >= 20 ? GuiText.Lumen.getLocal() + " " : "") + getColor( is );
}
public AEColor getColor(ItemStack is)