diff options
Diffstat (limited to 'src/server/game/Quests/QuestDef.h')
-rw-r--r-- | src/server/game/Quests/QuestDef.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/server/game/Quests/QuestDef.h b/src/server/game/Quests/QuestDef.h index 09227d689cd..8bb56951402 100644 --- a/src/server/game/Quests/QuestDef.h +++ b/src/server/game/Quests/QuestDef.h @@ -559,8 +559,11 @@ class TC_GAME_API Quest // table data accessors: uint32 GetQuestId() const { return _id; } uint32 GetQuestType() const { return _type; } + int32 GetQuestLevel() const { return _level; } + int32 GetQuestScalingFactionGroup() const { return _scalingFactionGroup; } + int32 GetQuestMaxScalingLevel() const { return _maxScalingLevel; } uint32 GetQuestPackageID() const { return _packageID; } - uint32 GetContentTuningId() const { return _contentTuningID; } + int32 GetQuestMinLevel() const { return _minLevel; } int32 GetZoneOrSort() const { return _questSortID; } uint32 GetMaxLevel() const { return _maxLevel; } uint32 GetQuestInfoID() const { return _questInfoID; } @@ -708,8 +711,11 @@ class TC_GAME_API Quest // wdb data (quest query response) uint32 _id = 0; uint32 _type = 0; + int32 _level = 0; + int32 _scalingFactionGroup = 0; + int32 _maxScalingLevel = 0; uint32 _packageID = 0; - uint32 _contentTuningID = 0; + int32 _minLevel = 0; int32 _questSortID = 0; uint32 _questInfoID = 0; uint32 _suggestedPlayers = 0; |