@rhyster/wow-casc-dbc 2.12.4 → 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.mjs CHANGED
@@ -932,8 +932,8 @@ const parseRootFile = (inputBuffer, eKey, cKey) => {
932
932
  let pointer = headerSize;
933
933
  while (pointer < buffer.byteLength) {
934
934
  const numRecords = buffer.readUInt32LE(pointer);
935
- let contentFlags = 0;
936
- let localeFlags = 0;
935
+ let contentFlags;
936
+ let localeFlags;
937
937
  if (version >= 2) {
938
938
  localeFlags = buffer.readUInt32LE(pointer + 4);
939
939
  const contentFlags1 = buffer.readUInt32LE(pointer + 8);