mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-24 19:06:49 +01:00
Core/Quests: Fixed typo in raid group requirements check (#28914)
This commit is contained in:
@@ -16526,7 +16526,7 @@ void Player::UpdateQuestObjectiveProgress(QuestObjectiveType objectiveType, int3
|
||||
Quest const* quest = sObjectMgr->GetQuestTemplate(questId);
|
||||
|
||||
if (!QuestObjective::CanAlwaysBeProgressedInRaid(objectiveType))
|
||||
if (GetGroup() && GetGroup()->isRaidGroup() && quest->IsAllowedInRaid(GetMap()->GetDifficultyID()))
|
||||
if (GetGroup() && GetGroup()->isRaidGroup() && !quest->IsAllowedInRaid(GetMap()->GetDifficultyID()))
|
||||
continue;
|
||||
|
||||
uint16 logSlot = objectiveItr.second.QuestStatusItr->second.Slot;
|
||||
|
||||
Reference in New Issue
Block a user