diff options
Diffstat (limited to 'src/server/scripts/Commands')
-rw-r--r-- | src/server/scripts/Commands/cs_lookup.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/scripts/Commands/cs_lookup.cpp b/src/server/scripts/Commands/cs_lookup.cpp index 4a6fbd0fb38..359b9651783 100644 --- a/src/server/scripts/Commands/cs_lookup.cpp +++ b/src/server/scripts/Commands/cs_lookup.cpp @@ -685,7 +685,7 @@ public: { int32 maxLevel = 0; if (Optional<ContentTuningLevels> questLevels = sDB2Manager.GetContentTuningData(questTemplatePair.second->GetContentTuningId(), - handler->GetSession()->GetPlayer()->m_playerData->CtrOptions->ContentTuningConditionMask)) + handler->GetSession()->GetPlayer()->m_playerData->CtrOptions->ConditionalFlags)) maxLevel = questLevels->MaxLevel; int32 scalingFactionGroup = 0; @@ -745,7 +745,7 @@ public: { int32 maxLevel = 0; if (Optional<ContentTuningLevels> questLevels = sDB2Manager.GetContentTuningData(questTemplatePair.second->GetContentTuningId(), - handler->GetSession()->GetPlayer()->m_playerData->CtrOptions->ContentTuningConditionMask)) + handler->GetSession()->GetPlayer()->m_playerData->CtrOptions->ConditionalFlags)) maxLevel = questLevels->MaxLevel; int32 scalingFactionGroup = 0; @@ -815,7 +815,7 @@ public: { int32 maxLevel = 0; if (Optional<ContentTuningLevels> questLevels = sDB2Manager.GetContentTuningData(quest->GetContentTuningId(), - handler->GetSession()->GetPlayer()->m_playerData->CtrOptions->ContentTuningConditionMask)) + handler->GetSession()->GetPlayer()->m_playerData->CtrOptions->ConditionalFlags)) maxLevel = questLevels->MaxLevel; int32 scalingFactionGroup = 0; |