Merge pull request #668 from Grimfeather/fix-mistake-entrance-naxx40

fix mistake entrance naxx40
This commit is contained in:
Grimfeather
2025-08-23 05:16:49 +02:00
committed by GitHub

View File

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