madden-franchise 3.0.0 → 3.0.1

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/FranchiseFile.js CHANGED
@@ -461,6 +461,9 @@ function getGameYear(data, isCompressed, format) {
461
461
  else if (yearIdentifier[2] === 0x32) {
462
462
  return 22;
463
463
  }
464
+ else if (yearIdentifier[2] === 0x33) {
465
+ return 23;
466
+ }
464
467
  else {
465
468
  const schemaMajor = getCompressedSchema(data).major;
466
469
  const year = schemaMax.find((schema) => { return schema.max >= schemaMajor; }).year;
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "madden-franchise",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Tools to read a madden franchise file and get data from it",
5
5
  "main": "FranchiseFile.js",
6
6
  "scripts": {
Binary file
Binary file