improve IScavRaidTimeLocationSettings comments

This commit is contained in:
Dev 2023-12-19 13:23:27 +00:00
parent 2f3202b921
commit 8a964aef29

View File

@ -122,10 +122,13 @@ export interface IScavRaidTimeLocationSettings
{ {
/** Should loot be reduced by same percent length of raid is reduced by */ /** Should loot be reduced by same percent length of raid is reduced by */
reduceLootByPercent: boolean; reduceLootByPercent: boolean;
/** Smallest % of container loot that should be spawned */
minStaticLootPercent: number; minStaticLootPercent: number;
/** Smallest % of loose loot that should be spawned */
minDynamicLootPercent: number; minDynamicLootPercent: number;
/** Chance raid time is reduced */ /** Chance raid time is reduced */
reducedChancePercent: number; reducedChancePercent: number;
/** How much should raid time be reduced - weighted */
reductionPercentWeights: Record<string, number>; reductionPercentWeights: Record<string, number>;
/** Should bot waves be removed / spawn times be adjusted */ /** Should bot waves be removed / spawn times be adjusted */
adjustWaves: boolean; adjustWaves: boolean;