From 31342a9f31d98da266396f51724b43f5ad4ad0c5 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Thu, 29 Feb 2024 22:26:50 -0500 Subject: [PATCH] Core/Items: allow all soulbound common and poor items to unlock their appearance to reflect patch 10.0.5 changes Port From (https://github.com/TrinityCore/TrinityCore/commit/47c14bedef9c6f3f1b7c11499b2ca2afe52f4597) --- Source/Game/Entities/Player/CollectionManager.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Source/Game/Entities/Player/CollectionManager.cs b/Source/Game/Entities/Player/CollectionManager.cs index ebcb769ad..1257a71d7 100644 --- a/Source/Game/Entities/Player/CollectionManager.cs +++ b/Source/Game/Entities/Player/CollectionManager.cs @@ -650,10 +650,6 @@ namespace Game.Entities return false; } - if (itemTemplate.GetQuality() < ItemQuality.Uncommon) - if (!itemTemplate.HasFlag(ItemFlags2.IgnoreQualityForItemVisualSource) || !itemTemplate.HasFlag(ItemFlags3.ActsAsTransmogHiddenVisualOption)) - return false; - if (itemModifiedAppearance.Id < _appearances.Count && _appearances.Get((int)itemModifiedAppearance.Id)) return false;