Include Upgrade Shard Tier in Upgrade Shard name.
This commit is contained in:
parent
7e0c996d26
commit
b3b525e25a
Binary file not shown.
@ -3145,7 +3145,10 @@ public class GenericFunctions {
|
|||||||
private static void UpdateUpgradeShard(ItemStack item) {
|
private static void UpdateUpgradeShard(ItemStack item) {
|
||||||
if (isUpgradeShard(item)) {
|
if (isUpgradeShard(item)) {
|
||||||
//item.setItemMeta(TwosideKeeper.UPGRADE_SHARD.getItemStack().getItemMeta());
|
//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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user