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:
Sven Bledt
2023-09-27 22:05:28 +02:00
committed by GitHub
parent dcf5816f5d
commit b80aaebb5a
2 changed files with 3 additions and 1 deletions

View File

@@ -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>();