From 8e3f8c010ac52e8814adcacac40b0b0515aad6c1 Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Fri, 14 Jun 2024 23:50:47 +0200 Subject: Core/Quests: fixed loading quest flags --- src/server/game/Quests/QuestDef.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') 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) { -- cgit v1.2.3