Update IndividualProgressionPlayer.cpp

removed unnecessary check
you can't be attuned if you haven't progress to the naxx phase.
This commit is contained in:
Grimfeather
2025-06-07 02:20:34 +02:00
committed by GitHub
parent 146e1ff5a3
commit eda5da131a

View File

@@ -258,7 +258,7 @@ public:
{
return false;
}
if (instanceTemplate->Parent == MAP_NORTHREND && mapid == MAP_NAXXRAMAS && player->GetLevel() < 71 && (!sIndividualProgression->hasPassedProgression(player, PROGRESSION_AQ) || !isAttuned(player)) )
if (instanceTemplate->Parent == MAP_NORTHREND && mapid == MAP_NAXXRAMAS && player->GetLevel() < 71 && !isAttuned(player))
{
return false;
}