s2cfgtojson 3.7.0 → 3.7.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.mts +6 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "s2cfgtojson",
3
- "version": "3.7.0",
3
+ "version": "3.7.1",
4
4
  "description": "Converts Stalker 2 Cfg file into POJOs",
5
5
  "keywords": [
6
6
  "stalker",
package/types.mts CHANGED
@@ -2192,7 +2192,12 @@ export type SpawnActorPrototype = GetStructType<{
2192
2192
  bForceCodePhysicsDisabled: boolean;
2193
2193
  bWakeUpOnStart: boolean;
2194
2194
  StashPrototypeSID: string;
2195
- ItemGeneratorSettings: string;
2195
+ ItemGeneratorSettings: {
2196
+ PlayerRank: ERank;
2197
+ ItemGenerators: {
2198
+ PrototypeSID: string;
2199
+ }[];
2200
+ }[];
2196
2201
  TileOffsetIndex: number;
2197
2202
  ItemSID: string;
2198
2203
  Durability: number;