@etothepii/satisfactory-file-parser 0.1.6 → 0.1.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.
|
@@ -934,7 +934,7 @@ const ParseDynamicStructData = (reader, buildVersion, type) => {
|
|
|
934
934
|
let propertyName = reader.readString();
|
|
935
935
|
while (propertyName !== 'None') {
|
|
936
936
|
const property = DataFields_1.DataFields.ParseProperty(reader, buildVersion, propertyName);
|
|
937
|
-
data.properties
|
|
937
|
+
data.properties.push(property);
|
|
938
938
|
propertyName = reader.readString();
|
|
939
939
|
}
|
|
940
940
|
return data;
|
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.
|
|
4
|
+
"version": "0.1.7",
|
|
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",
|