Minor fix for -1 breaks remaining.

This commit is contained in:
sigonasr2 2016-08-17 19:22:12 -05:00
parent cb1b8fbd6a
commit 468b298fa7
2 changed files with 1 additions and 0 deletions

Binary file not shown.

View File

@ -154,6 +154,7 @@ public class GenericFunctions {
public static ItemStack convertArtifactToDust(ItemStack item) {
//Add one line of lore to indicate it's broken dust.
item = addHardenedItemBreaks(item,1);
ItemMeta m = item.getItemMeta();
List<String> oldlore = m.getLore();
oldlore.add(0,ChatColor.DARK_BLUE+""+ChatColor.MAGIC+item.getType());