diff --git a/project/assets/configs/ragfair.json b/project/assets/configs/ragfair.json index c2bfa951..d6231726 100644 --- a/project/assets/configs/ragfair.json +++ b/project/assets/configs/ragfair.json @@ -9,7 +9,6 @@ "minSellChancePercent": 0 }, "time": { - "base": 1.5, "min": 0, "max": 1.0 }, diff --git a/project/src/models/spt/config/IRagfairConfig.ts b/project/src/models/spt/config/IRagfairConfig.ts index 752ef1b9..d07ab80f 100644 --- a/project/src/models/spt/config/IRagfairConfig.ts +++ b/project/src/models/spt/config/IRagfairConfig.ts @@ -20,7 +20,7 @@ export interface Sell /** Settings to control chances of offer being sold */ chance: Chance; /** Settings to control how long it takes for a player offer to sell */ - time: Time; + time: MinMax; /** Player offer reputation gain/loss settings */ reputation: Reputation; /**Seconds from clicking remove to remove offer from market */ @@ -39,11 +39,6 @@ export interface Chance minSellChancePercent: number; } -export interface Time extends MinMax -{ - base: number; -} - export interface Reputation { gain: number;