diff --git a/package.json b/package.json index 6011321..cf73d53 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nivramtweaks", - "version": "1.1.0", + "version": "1.1.1", "sptVersion": "~3.9", "loadBefore": [], "loadAfter": [], @@ -24,7 +24,7 @@ "typescript": "5.4", "winston": "3.12" }, - "author": "Chomp", + "author": "xFaNaTiix", "contributors": [], "license": "MIT" } diff --git a/src/mod.ts b/src/mod.ts index f6c8571..674b35b 100644 --- a/src/mod.ts +++ b/src/mod.ts @@ -132,18 +132,22 @@ class Mod implements IPostDBLoadMod { } private buffLoot() { - this.iLocationConfig.looseLootMultiplier.rezervbase = 3.3; - + // static loot const staticX = 1.2; - const looseX = 1.2; for (const i in this.iLocationConfig.staticLootMultiplier) { this.iLocationConfig.staticLootMultiplier[i] *= staticX; } + + // loose loot + const looseX = 1.0; + for (const i in this.iLocationConfig.looseLootMultiplier) { this.iLocationConfig.looseLootMultiplier[i] *= looseX; } + + this.iLocationConfig.looseLootMultiplier.rezervbase = 4.2; // def. 2.9 } private multiplyWeaponSkillProgressionRate(x: number) {