Fixed seeds and P2P bus not having a localised name.

This commit is contained in:
Gunther De Wachter
2017-07-19 13:55:09 +02:00
parent b0950683a1
commit 87f6a63f47
2 changed files with 11 additions and 11 deletions
@@ -185,17 +185,17 @@ public class ItemCrystalSeed extends AEBaseItem implements IGrowableCrystal
if( damage < CERTUS + SINGLE_OFFSET )
{
return this.getUnlocalizedName() + ".Certus";
return this.getUnlocalizedName() + ".certus";
}
if( damage < NETHER + SINGLE_OFFSET )
{
return this.getUnlocalizedName() + ".Nether";
return this.getUnlocalizedName() + ".nether";
}
if( damage < FLUIX + SINGLE_OFFSET )
{
return this.getUnlocalizedName() + ".Fluix";
return this.getUnlocalizedName() + ".fluix";
}
return this.getUnlocalizedName();