Improve iRagfairConfig comments

This commit is contained in:
Dev 2024-01-18 20:30:13 +00:00
parent c8fa31184f
commit 6eeb8c58d6

View File

@ -163,7 +163,10 @@ export interface Blacklist
export interface IUnreasonableModPrices 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; 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; 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; newPriceHandbookMultiplier: number;
} }