@rhyster/wow-casc-dbc 2.12.5 → 2.12.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/parsers/rootFile.ts +2 -2
package/dist/index.cjs
CHANGED
|
@@ -944,8 +944,8 @@ const parseRootFile = (inputBuffer, eKey, cKey) => {
|
|
|
944
944
|
let pointer = headerSize;
|
|
945
945
|
while (pointer < buffer.byteLength) {
|
|
946
946
|
const numRecords = buffer.readUInt32LE(pointer);
|
|
947
|
-
let contentFlags
|
|
948
|
-
let localeFlags
|
|
947
|
+
let contentFlags;
|
|
948
|
+
let localeFlags;
|
|
949
949
|
if (version >= 2) {
|
|
950
950
|
localeFlags = buffer.readUInt32LE(pointer + 4);
|
|
951
951
|
const contentFlags1 = buffer.readUInt32LE(pointer + 8);
|