From 87f6a63f474258278ae1b041192763f6d22af31f Mon Sep 17 00:00:00 2001 From: Gunther De Wachter Date: Wed, 19 Jul 2017 13:55:09 +0200 Subject: [PATCH] Fixed seeds and P2P bus not having a localised name. --- .../java/appeng/items/misc/ItemCrystalSeed.java | 6 +++--- src/main/java/appeng/items/parts/PartType.java | 16 ++++++++-------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/main/java/appeng/items/misc/ItemCrystalSeed.java b/src/main/java/appeng/items/misc/ItemCrystalSeed.java index 023fab33d..82cfe885f 100644 --- a/src/main/java/appeng/items/misc/ItemCrystalSeed.java +++ b/src/main/java/appeng/items/misc/ItemCrystalSeed.java @@ -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(); diff --git a/src/main/java/appeng/items/parts/PartType.java b/src/main/java/appeng/items/parts/PartType.java index 155b8a9c6..d33be9c6a 100644 --- a/src/main/java/appeng/items/parts/PartType.java +++ b/src/main/java/appeng/items/parts/PartType.java @@ -198,7 +198,7 @@ public enum PartType @Override String getUnlocalizedName() { - return "P2PTunnel"; + return "p2p_tunnel"; } }, @@ -208,7 +208,7 @@ public enum PartType @Override String getUnlocalizedName() { - return "P2PTunnel"; + return "p2p_tunnel"; } }, @@ -218,7 +218,7 @@ public enum PartType @Override String getUnlocalizedName() { - return "P2PTunnel"; + return "p2p_tunnel"; } }, @@ -228,7 +228,7 @@ public enum PartType @Override String getUnlocalizedName() { - return "P2PTunnel"; + return "p2p_tunnel"; } }, @@ -238,7 +238,7 @@ public enum PartType @Override String getUnlocalizedName() { - return "P2PTunnel"; + return "p2p_tunnel"; } }, @@ -248,7 +248,7 @@ public enum PartType @Override String getUnlocalizedName() { - return "P2PTunnel"; + return "p2p_tunnel"; } }, @@ -258,7 +258,7 @@ public enum PartType @Override String getUnlocalizedName() { - return "P2PTunnel"; + return "p2p_tunnel"; } }, @@ -268,7 +268,7 @@ public enum PartType @Override String getUnlocalizedName() { - return "P2PTunnel"; + return "p2p_tunnel"; } },