aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/server/game/Quests/QuestDef.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Quests/QuestDef.cpp b/src/server/game/Quests/QuestDef.cpp
index 1b70a3704f5..23403d6acc2 100644
--- a/src/server/game/Quests/QuestDef.cpp
+++ b/src/server/game/Quests/QuestDef.cpp
@@ -72,8 +72,8 @@ Quest::Quest(Field* questRecord)
for (uint32 i = 0; i < QUEST_REWARD_CHOICES_COUNT; ++i)
{
RewardChoiceItemId[i] = questRecord[42 + i * 3].GetUInt32();
- RewardChoiceItemCount[i] = questRecord[44 + i * 3].GetUInt32();
- RewardChoiceItemDisplayId[i] = questRecord[45 + i * 3].GetUInt32();
+ RewardChoiceItemCount[i] = questRecord[43 + i * 3].GetUInt32();
+ RewardChoiceItemDisplayId[i] = questRecord[44 + i * 3].GetUInt32();
if (RewardChoiceItemId[i])
++_rewChoiceItemsCount;