diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/QuestDef.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/QuestDef.cpp b/src/game/QuestDef.cpp index 5349f2d94b6..7fc840765fe 100644 --- a/src/game/QuestDef.cpp +++ b/src/game/QuestDef.cpp @@ -72,7 +72,7 @@ Quest::Quest(Field * questRecord) ReqItemCount[i] = questRecord[47+i].GetUInt32(); for (int i = 0; i < QUEST_SOURCE_ITEM_IDS_COUNT; ++i) - ReqSourceId[i] = questRecord[52+i].GetUInt32(); + ReqSourceId[i] = questRecord[53+i].GetUInt32(); for (int i = 0; i < QUEST_SOURCE_ITEM_IDS_COUNT; ++i) ReqSourceCount[i] = questRecord[57+i].GetUInt32(); @@ -87,7 +87,7 @@ Quest::Quest(Field * questRecord) ReqSpell[i] = questRecord[69+i].GetUInt32(); for (int i = 0; i < QUEST_REWARD_CHOICES_COUNT; ++i) - RewChoiceItemId[i] = questRecord[72+i].GetUInt32(); + RewChoiceItemId[i] = questRecord[73+i].GetUInt32(); for (int i = 0; i < QUEST_REWARD_CHOICES_COUNT; ++i) RewChoiceItemCount[i] = questRecord[79+i].GetUInt32(); |