avoid placeholder when there is no "featured image" improved, thanks @iAmAsval

This commit is contained in:
MaikyM
2019-07-14 10:11:21 -06:00
parent ca473be596
commit 5d86e11944

View File

@@ -234,7 +234,7 @@ namespace FModel
}
// There is no featured image (as legends pack, shadow pack...)
if (string.IsNullOrEmpty(ItemIconPath) || ItemIconPath.Contains("T_Placeholder_Item_Outfit"))
if (string.IsNullOrEmpty(ItemIconPath) || ItemIconPath.Contains("Athena\\Prototype\\Textures\\"))
GetItemIcon(theItem);
}
}