diff --git a/TwosideKeeper.jar b/TwosideKeeper.jar index 668bbc0..45e2063 100644 Binary files a/TwosideKeeper.jar and b/TwosideKeeper.jar differ diff --git a/src/sig/plugin/TwosideKeeper/HelperStructures/Common/GenericFunctions.java b/src/sig/plugin/TwosideKeeper/HelperStructures/Common/GenericFunctions.java index e07f170..9936e58 100644 --- a/src/sig/plugin/TwosideKeeper/HelperStructures/Common/GenericFunctions.java +++ b/src/sig/plugin/TwosideKeeper/HelperStructures/Common/GenericFunctions.java @@ -3145,7 +3145,10 @@ public class GenericFunctions { private static void UpdateUpgradeShard(ItemStack item) { if (isUpgradeShard(item)) { //item.setItemMeta(TwosideKeeper.UPGRADE_SHARD.getItemStack().getItemMeta()); - getUpgradeShardTier(item); //This forces the tier to appear. + int tier = getUpgradeShardTier(item); //This forces the tier to appear. + ItemMeta m = item.getItemMeta(); + m.setDisplayName(ChatColor.GREEN+"T"+tier+" Upgrade Shard"); + item.setItemMeta(m); } }