diff options
author | Ovahlord <dreadkiller@gmx.de> | 2024-06-14 23:50:47 +0200 |
---|---|---|
committer | Ovahlord <dreadkiller@gmx.de> | 2024-06-14 23:50:47 +0200 |
commit | 8e3f8c010ac52e8814adcacac40b0b0515aad6c1 (patch) | |
tree | b2735265c93c25780a117f14e66c58e55b61a25b /src | |
parent | 5fb9b9c4246d7cf44ed40f1936e6a45d6242ced2 (diff) |
Core/Quests: fixed loading quest flags
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Quests/QuestDef.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/game/Quests/QuestDef.cpp b/src/server/game/Quests/QuestDef.cpp index 96d102d47ab..607db09ee08 100644 --- a/src/server/game/Quests/QuestDef.cpp +++ b/src/server/game/Quests/QuestDef.cpp @@ -54,9 +54,9 @@ Quest::Quest(Field* questRecord) _rewardArtifactXPDifficulty = questRecord[20].GetUInt32(); _rewardArtifactXPMultiplier = questRecord[21].GetFloat(); _rewardArtifactCategoryID = questRecord[22].GetUInt32(); - _flags = questRecord[21].GetUInt32(); - _flagsEx = questRecord[22].GetUInt32(); - _flagsEx2 = questRecord[23].GetUInt32(); + _flags = questRecord[23].GetUInt32(); + _flagsEx = questRecord[24].GetUInt32(); + _flagsEx2 = questRecord[25].GetUInt32(); for (uint32 i = 0; i < QUEST_ITEM_DROP_COUNT; ++i) { |