Remoe unused enabled properties from ragfair config chancePercent is used instead

This commit is contained in:
Dev 2024-02-09 12:46:23 +00:00
parent e915d17019
commit 74ea69ffe6
2 changed files with 0 additions and 6 deletions

View File

@ -34,7 +34,6 @@
"purchasesAreFoundInRaid": false, "purchasesAreFoundInRaid": false,
"useTraderPriceForOffersIfHigher": true, "useTraderPriceForOffersIfHigher": true,
"barter": { "barter": {
"enable": true,
"chancePercent": 20, "chancePercent": 20,
"itemCountMin": 1, "itemCountMin": 1,
"itemCountMax": 3, "itemCountMax": 3,
@ -49,7 +48,6 @@
] ]
}, },
"pack": { "pack": {
"enable": true,
"chancePercent": 20, "chancePercent": 20,
"itemCountMin": 4, "itemCountMin": 4,
"itemCountMax": 12, "itemCountMax": 12,

View File

@ -101,8 +101,6 @@ export interface IPriceRanges
export interface IBarterDetails export interface IBarterDetails
{ {
/** Should barter offers be generated */
enable: boolean;
/** Percentage change an offer is listed as a barter */ /** Percentage change an offer is listed as a barter */
chancePercent: number; chancePercent: number;
/** Min number of required items for a barter requirement */ /** Min number of required items for a barter requirement */
@ -119,8 +117,6 @@ export interface IBarterDetails
export interface IPackDetails export interface IPackDetails
{ {
/** Should pack offers be generated */
enable: boolean;
/** Percentage change an offer is listed as a pack */ /** Percentage change an offer is listed as a pack */
chancePercent: number; chancePercent: number;
/** Min number of required items for a pack */ /** Min number of required items for a pack */