From 8a964aef295d935fbd381e9ea0607eb731f121f6 Mon Sep 17 00:00:00 2001 From: Dev Date: Tue, 19 Dec 2023 13:23:27 +0000 Subject: [PATCH] improve `IScavRaidTimeLocationSettings` comments --- project/src/models/spt/config/ILocationConfig.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/project/src/models/spt/config/ILocationConfig.ts b/project/src/models/spt/config/ILocationConfig.ts index e59469d0..c3d25569 100644 --- a/project/src/models/spt/config/ILocationConfig.ts +++ b/project/src/models/spt/config/ILocationConfig.ts @@ -122,10 +122,13 @@ export interface IScavRaidTimeLocationSettings { /** Should loot be reduced by same percent length of raid is reduced by */ reduceLootByPercent: boolean; + /** Smallest % of container loot that should be spawned */ minStaticLootPercent: number; +/** Smallest % of loose loot that should be spawned */ minDynamicLootPercent: number; /** Chance raid time is reduced */ reducedChancePercent: number; + /** How much should raid time be reduced - weighted */ reductionPercentWeights: Record; /** Should bot waves be removed / spawn times be adjusted */ adjustWaves: boolean;