From 193516bd7d3c94d5d231a34410da3c5d203f0e4e Mon Sep 17 00:00:00 2001 From: Aokromes Date: Fri, 15 Jun 2018 11:46:29 +0200 Subject: [PATCH] Core/Quest: Fix max allowableraces By Wylath closes #177 --- src/server/game/Quests/QuestDef.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/game/Quests/QuestDef.cpp b/src/server/game/Quests/QuestDef.cpp index 66029a7991f..7729e4a5aa1 100644 --- a/src/server/game/Quests/QuestDef.cpp +++ b/src/server/game/Quests/QuestDef.cpp @@ -44,7 +44,7 @@ Quest::Quest(Field* questRecord) Type = questRecord[5].GetUInt16(); SuggestedPlayers = questRecord[6].GetUInt8(); TimeAllowed = questRecord[7].GetUInt32(); - AllowableRaces = questRecord[8].GetUInt16(); + AllowableRaces = questRecord[8].GetUInt32(); RequiredFactionId1 = questRecord[9].GetUInt16(); RequiredFactionId2 = questRecord[10].GetUInt16(); RequiredFactionValue1 = questRecord[11].GetInt32();