diff options
author | ariel- <ariel-@users.noreply.github.com> | 2017-03-16 01:27:13 -0300 |
---|---|---|
committer | funjoker <funjoker109@gmail.com> | 2020-04-24 17:18:48 +0200 |
commit | c03373c59fd4103096936a19d8dd668959620a29 (patch) | |
tree | b7644162a566fd40b81e0a79b2f82e9deead0d0d /src/server/game/Quests/QuestDef.cpp | |
parent | feb8205d6a78549b60ac8c0c2e394fdcb8e33cc8 (diff) |
Core/Quests: changed quest_template_addon.NextQuestID to unsigned
- No reason to keep this anymore after 4349adf0f25210e5b26201523a09bc26b4a83394, this is a broken functionality.
(cherry picked from commit dca276716fecb819fec668f59954113a77f9e393)
Diffstat (limited to 'src/server/game/Quests/QuestDef.cpp')
-rw-r--r-- | src/server/game/Quests/QuestDef.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Quests/QuestDef.cpp b/src/server/game/Quests/QuestDef.cpp index 115c72c83d2..28685dc58ec 100644 --- a/src/server/game/Quests/QuestDef.cpp +++ b/src/server/game/Quests/QuestDef.cpp @@ -191,7 +191,7 @@ void Quest::LoadQuestTemplateAddon(Field* fields) _allowableClasses = 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(); |