diff options
| author | Shauren <shauren.trinity@gmail.com> | 2020-12-01 21:08:06 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2020-12-08 18:16:47 +0100 |
| commit | b82a3a557a7bf13d48342ea189325550059b622d (patch) | |
| tree | 014fd20fae16fab1da1f056850348282b0e5e331 /src/tools/extractor_common | |
| parent | 426cb31676338cf6e5411d38f645f98a7e6ccb91 (diff) | |
Core/DataStores: Updated db2 structures to 9.0.2
* Includes support for new character customization
Diffstat (limited to 'src/tools/extractor_common')
| -rw-r--r-- | src/tools/extractor_common/ExtractorDB2LoadInfo.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/tools/extractor_common/ExtractorDB2LoadInfo.h b/src/tools/extractor_common/ExtractorDB2LoadInfo.h index a45e14f0ad0..f4161e836be 100644 --- a/src/tools/extractor_common/ExtractorDB2LoadInfo.h +++ b/src/tools/extractor_common/ExtractorDB2LoadInfo.h @@ -231,6 +231,7 @@ struct MapLoadInfo { false, FT_INT, "ID" }, { false, FT_STRING_NOT_LOCALIZED, "Directory" }, { false, FT_STRING, "MapName" }, + { false, FT_STRING_NOT_LOCALIZED, "InternalName" }, { false, FT_STRING, "MapDescription0" }, { false, FT_STRING, "MapDescription1" }, { false, FT_STRING, "PvpShortDescription" }, @@ -255,10 +256,11 @@ struct MapLoadInfo { true, FT_INT, "Flags1" }, { true, FT_INT, "Flags2" }, }; - static DB2MetaField const fields[23] = + static DB2MetaField const fields[24] = { { FT_STRING_NOT_LOCALIZED, 1, true }, { FT_STRING, 1, true }, + { FT_STRING_NOT_LOCALIZED, 1, true }, { FT_STRING, 1, true }, { FT_STRING, 1, true }, { FT_STRING, 1, true }, @@ -281,7 +283,7 @@ struct MapLoadInfo { FT_INT, 1, true }, { FT_INT, 2, true }, }; - static DB2Meta meta(1349477, -1, 23, 23, 0xDA9493AF, fields, -1); + static DB2Meta meta(1349477, -1, 24, 24, 0x793F4E8E, fields, -1); static DB2FileLoadInfo const loadInfo(&loadedFields[0], std::extent<decltype(loadedFields)>::value, &meta); return &loadInfo; } |
