aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Quests/QuestDef.cpp
diff options
context:
space:
mode:
authorariel- <ariel-@users.noreply.github.com>2017-03-16 01:27:13 -0300
committerariel- <ariel-@users.noreply.github.com>2017-03-16 01:27:13 -0300
commitdca276716fecb819fec668f59954113a77f9e393 (patch)
tree0d3adca2670ee1e88505ba1f0404763b4ec9245d /src/server/game/Quests/QuestDef.cpp
parent076293f1f269b8f681c97f23872915bdfeccef1d (diff)
Core/Quests: changed quest_template_addon.NextQuestID to unsigned
- No reason to keep this anymore after 4349adf0f25210e5b26201523a09bc26b4a83394, this is a broken functionality.
Diffstat (limited to 'src/server/game/Quests/QuestDef.cpp')
-rw-r--r--src/server/game/Quests/QuestDef.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Quests/QuestDef.cpp b/src/server/game/Quests/QuestDef.cpp
index 69944c3a64c..44ba68bcfb3 100644
--- a/src/server/game/Quests/QuestDef.cpp
+++ b/src/server/game/Quests/QuestDef.cpp
@@ -174,7 +174,7 @@ void Quest::LoadQuestTemplateAddon(Field* fields)
_requiredClasses = fields[2].GetUInt32();
_sourceSpellid = fields[3].GetUInt32();
_prevQuestId = fields[4].GetInt32();
- _nextQuestId = fields[5].GetInt32();
+ _nextQuestId = fields[5].GetUInt32();
_exclusiveGroup = fields[6].GetInt32();
_rewardMailTemplateId = fields[7].GetUInt32();
_rewardMailDelay = fields[8].GetUInt32();