From 874463509ab3ed29cfdf0a16991d8b01400b461f Mon Sep 17 00:00:00 2001 From: Dev Date: Wed, 28 Feb 2024 21:37:42 +0000 Subject: [PATCH] Remove unused base value from ragfair config --- project/assets/configs/ragfair.json | 1 - project/src/models/spt/config/IRagfairConfig.ts | 7 +------ 2 files changed, 1 insertion(+), 7 deletions(-) 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;