@etothepii/satisfactory-file-parser 0.1.18 → 0.1.19

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/README.md CHANGED
@@ -17,7 +17,7 @@ Game Version Files of U5 and below are NOT supported.
17
17
  |:--------------:|:-----------------------------|
18
18
  | <= U5 | ❌ |
19
19
  | U6 + U7 | ✅ 0.0.1 - 0.0.34 |
20
- | U8 | ✅ >= 0.1.18 |
20
+ | U8 | ✅ >= 0.1.19 |
21
21
 
22
22
 
23
23
  ## Installation via npm
@@ -127,7 +127,6 @@ class SaveReader extends byte_reader_class_1.ByteReader {
127
127
  this.header.creativeModeEnabled = this.readInt32() == 1;
128
128
  }
129
129
  if (this.header.saveVersion >= 21) {
130
- console.log('save version', this.header.saveVersion, 'header type', this.header.saveHeaderType, 'buildversion', this.header.buildVersion);
131
130
  }
132
131
  else {
133
132
  throw new parser_error_1.UnsupportedVersionError("The save version is too old to support encoding currently. Save in newer game version.");
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@etothepii/satisfactory-file-parser",
3
3
  "author": "etothepii",
4
- "version": "0.1.18",
4
+ "version": "0.1.19",
5
5
  "description": "A file parser for satisfactory files. Includes save files and blueprint files.",
6
6
  "types": "./build/index.d.ts",
7
7
  "main": "./build/index.js",