From 47c14bedef9c6f3f1b7c11499b2ca2afe52f4597 Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Fri, 1 Mar 2024 01:35:08 +0100 Subject: Core/Items: allow all soulbound common and poor items to unlock their appearance to reflect patch 10.0.5 changes --- src/server/game/Entities/Player/CollectionMgr.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src') 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; -- cgit v1.2.3