Ejemplo n.º 1
0
 public static void Postfix(ItemDrop.ItemData item, ref string __result)
 {
     if (ExtendedItemDataFramework.DisplayUniqueItemIDInTooltip.Value)
     {
         var uniqueId = item.GetUniqueId();
         if (!string.IsNullOrEmpty(uniqueId))
         {
             __result += $"\n<color=magenta>{uniqueId}</color>";
         }
     }
 }