aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Quests/QuestDef.h
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2018-02-10 01:24:00 +0100
committerShauren <shauren.trinity@gmail.com>2018-02-18 16:33:49 +0100
commit4af15915bc8b780ef854c2e58d7ab5bb38f56758 (patch)
treefbbc2706ca6385e153a3b648b91c5a701d2bc271 /src/server/game/Quests/QuestDef.h
parentc9465979c6002ae43bb8e536e3ad0f6d1be36b98 (diff)
Core/PacketIO: Updated opcodes and packet structures to 7.3.5
Diffstat (limited to 'src/server/game/Quests/QuestDef.h')
-rw-r--r--src/server/game/Quests/QuestDef.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/server/game/Quests/QuestDef.h b/src/server/game/Quests/QuestDef.h
index 943fa06f6b1..88132ce0285 100644
--- a/src/server/game/Quests/QuestDef.h
+++ b/src/server/game/Quests/QuestDef.h
@@ -351,9 +351,10 @@ class TC_GAME_API Quest
int32 GetMinLevel() const { return MinLevel; }
uint32 GetMaxLevel() const { return MaxLevel; }
int32 GetQuestLevel() const { return Level; }
+ int32 GetQuestMaxScalingLevel() const { return MaxScalingLevel; }
uint32 GetQuestInfoID() const { return QuestInfoID; }
uint32 GetAllowableClasses() const { return AllowableClasses; }
- int32 GetAllowableRaces() const { return AllowableRaces; }
+ uint64 GetAllowableRaces() const { return AllowableRaces; }
uint32 GetRequiredSkill() const { return RequiredSkillId; }
uint32 GetRequiredSkillValue() const { return RequiredSkillPoints; }
uint32 GetRequiredMinRepFaction() const { return RequiredMinRepFaction; }
@@ -452,6 +453,7 @@ class TC_GAME_API Quest
uint32 ID;
uint32 Type;
int32 Level;
+ int32 MaxScalingLevel;
uint32 PackageID;
int32 MinLevel;
int32 QuestSortID;
@@ -502,7 +504,7 @@ class TC_GAME_API Quest
uint32 SoundTurnIn;
uint32 AreaGroupID;
uint32 LimitTime;
- int32 AllowableRaces;
+ uint64 AllowableRaces;
uint32 QuestRewardID;
int32 Expansion;
QuestObjectives Objectives;