Core/Items: allow all soulbound common and poor items to unlock their appearance to reflect patch 10.0.5 changes

This commit is contained in:
Ovahlord
2024-03-01 01:35:08 +01:00
parent a814eb65b1
commit 47c14bedef

View File

@@ -734,10 +734,6 @@ bool CollectionMgr::CanAddAppearance(ItemModifiedAppearanceEntry const* itemModi
return false;
}
if (itemTemplate->GetQuality() < ITEM_QUALITY_UNCOMMON)
if (!itemTemplate->HasFlag(ITEM_FLAG2_IGNORE_QUALITY_FOR_ITEM_VISUAL_SOURCE) || !itemTemplate->HasFlag(ITEM_FLAG3_ACTS_AS_TRANSMOG_HIDDEN_VISUAL_OPTION))
return false;
if (itemModifiedAppearance->ID < _appearances->size() && _appearances->test(itemModifiedAppearance->ID))
return false;