diff options
author | Ovahlord <dreadkiller@gmx.de> | 2024-03-01 01:35:08 +0100 |
---|---|---|
committer | Ovahlord <dreadkiller@gmx.de> | 2024-03-01 01:39:41 +0100 |
commit | 47c14bedef9c6f3f1b7c11499b2ca2afe52f4597 (patch) | |
tree | d5b78cc4183710993ecb4899c764ed036a20ed11 | |
parent | a814eb65b15c4fcef6a37adc1b13905d4c13b2a5 (diff) |
Core/Items: allow all soulbound common and poor items to unlock their appearance to reflect patch 10.0.5 changes
-rw-r--r-- | src/server/game/Entities/Player/CollectionMgr.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/server/game/Entities/Player/CollectionMgr.cpp b/src/server/game/Entities/Player/CollectionMgr.cpp index 7868afe5ab9..51a8cac3879 100644 --- a/src/server/game/Entities/Player/CollectionMgr.cpp +++ b/src/server/game/Entities/Player/CollectionMgr.cpp @@ -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; |