Skip to content

Commit

Permalink
fix: remove leftover (#165)
Browse files Browse the repository at this point in the history
* fix: Fix logic and improve readibility

* fix: remove leftover
  • Loading branch information
Nyeriah authored Aug 17, 2024
1 parent 21f5eaf commit 5d4e1b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Transmogrification.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 5d4e1b4

Please sign in to comment.