From 6eeb8c58d6ce929a1273883db38a4d62d8689a98 Mon Sep 17 00:00:00 2001 From: Dev Date: Thu, 18 Jan 2024 20:30:13 +0000 Subject: [PATCH] Improve iRagfairConfig comments --- project/src/models/spt/config/IRagfairConfig.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/project/src/models/spt/config/IRagfairConfig.ts b/project/src/models/spt/config/IRagfairConfig.ts index 77964306..f0887460 100644 --- a/project/src/models/spt/config/IRagfairConfig.ts +++ b/project/src/models/spt/config/IRagfairConfig.ts @@ -163,7 +163,10 @@ export interface Blacklist export interface IUnreasonableModPrices { + /** Enable a system that adjusts very high ragfair prices to be below a max multiple of items the handbook values */ enabled: boolean; + /** Multipler to start adjusting item values from, e.g. a value of 10 means any value over 10x the handbook price gets adjusted */ handbookPriceOverMultiplier: number; + /** The new multiplier for items found using above property, e.g. a value of 4 means set items price to 4x handbook price */ newPriceHandbookMultiplier: number; }