diff options
author | Ovahlord <dreadkiller@gmx.de> | 2024-01-28 23:20:51 +0100 |
---|---|---|
committer | Ovahlord <dreadkiller@gmx.de> | 2024-01-28 23:20:51 +0100 |
commit | 55330d95a207efa1d0b9ccdd3b0e8b7b4ed82503 (patch) | |
tree | 5357775a028d6aebb234c7233c3f6ebf60cd6822 /src | |
parent | 0785ac69fd2fcf05d21978873f00012c10b8aeb0 (diff) |
DB/Quests: updated quest template, poi and objective data for WotLK classic
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Quests/QuestDef.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Quests/QuestDef.cpp b/src/server/game/Quests/QuestDef.cpp index 703f5f0708b..3cb08d2484a 100644 --- a/src/server/game/Quests/QuestDef.cpp +++ b/src/server/game/Quests/QuestDef.cpp @@ -37,7 +37,7 @@ Quest::Quest(Field* questRecord) _scalingFactionGroup = questRecord[3].GetInt32(); _maxScalingLevel = questRecord[4].GetInt32(); _packageID = questRecord[5].GetUInt32(); - _minLevel = questRecord[6].GetUInt32(); + _minLevel = questRecord[6].GetInt32(); _questSortID = questRecord[7].GetInt16(); _questInfoID = questRecord[8].GetUInt16(); _suggestedPlayers = questRecord[9].GetUInt8(); |