From 5d4e1b415e87feff30b5eddf21fd5da7ea8654fc Mon Sep 17 00:00:00 2001 From: Andrew <47818697+Nyeriah@users.noreply.github.com> Date: Sat, 17 Aug 2024 04:56:56 -0300 Subject: [PATCH] fix: remove leftover (#165) * fix: Fix logic and improve readibility * fix: remove leftover --- src/Transmogrification.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Transmogrification.cpp b/src/Transmogrification.cpp index 5637b07c..aebc2a58 100644 --- a/src/Transmogrification.cpp +++ b/src/Transmogrification.cpp @@ -887,7 +887,7 @@ bool Transmogrification::SuitableForTransmogrification(ObjectGuid guid, ItemTemp return false; } - if (!IgnoreLevelRequirement(guid) && IsPlusFeatureEligible(guid, PLUS_FEATURE_SKIP_LEVEL_REQ) && playerLevel < proto->RequiredLevel) + if (!IgnoreLevelRequirement(guid) && playerLevel < proto->RequiredLevel) return false; if (AllowLowerTiers && TierAvailable(NULL, playerGuid, proto->SubClass))