aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Quests/QuestDef.h
diff options
context:
space:
mode:
authorOvahlord <dreadkiller@gmx.de>2024-06-13 18:56:13 +0200
committerOvahlord <dreadkiller@gmx.de>2024-06-13 19:23:44 +0200
commit3d8602276d2e24e2ce75d9ba842e4201ec35e0dd (patch)
tree29395b2a92a786be23b11ddbcc4882ea9f3f1caa /src/server/game/Quests/QuestDef.h
parent992c4bc13e6713833eb09fa66c31726893f26a1a (diff)
Core/Quests: update quest_template fields to 4.4.0
Diffstat (limited to 'src/server/game/Quests/QuestDef.h')
-rw-r--r--src/server/game/Quests/QuestDef.h10
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;