@rhyster/wow-casc-dbc 2.12.5 → 2.12.6

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 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 = 0;
948
- let localeFlags = 0;
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);