mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-21 20:56:23 +00:00
fix(Core/Quest): AllowableRaces to uint32 for custom Racemasks (#17372)
* fix(Core/Quest): AllowableRaces to uint32 for custom Racemasks * Update data/sql/updates/pending_db_world/uint32_quest_template.sql * ready for merge --------- Co-authored-by: Kitzunu <24550914+Kitzunu@users.noreply.github.com>
This commit is contained in:
@@ -38,7 +38,7 @@ Quest::Quest(Field* questRecord)
|
||||
Type = questRecord[5].Get<uint16>();
|
||||
SuggestedPlayers = questRecord[6].Get<uint8>();
|
||||
TimeAllowed = questRecord[7].Get<uint32>();
|
||||
AllowableRaces = questRecord[8].Get<uint16>();
|
||||
AllowableRaces = questRecord[8].Get<uint32>();
|
||||
RequiredFactionId1 = questRecord[9].Get<uint16>();
|
||||
RequiredFactionId2 = questRecord[10].Get<uint16>();
|
||||
RequiredFactionValue1 = questRecord[11].Get<int32>();
|
||||
|
||||
Reference in New Issue
Block a user