Remove unused base value from ragfair config

This commit is contained in:
Dev 2024-02-28 21:37:42 +00:00
parent 69bf8939d5
commit 874463509a
2 changed files with 1 additions and 7 deletions

View File

@ -9,7 +9,6 @@
"minSellChancePercent": 0
},
"time": {
"base": 1.5,
"min": 0,
"max": 1.0
},

View File

@ -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;