Remove unused base value from ragfair config
This commit is contained in:
parent
69bf8939d5
commit
874463509a
@ -9,7 +9,6 @@
|
|||||||
"minSellChancePercent": 0
|
"minSellChancePercent": 0
|
||||||
},
|
},
|
||||||
"time": {
|
"time": {
|
||||||
"base": 1.5,
|
|
||||||
"min": 0,
|
"min": 0,
|
||||||
"max": 1.0
|
"max": 1.0
|
||||||
},
|
},
|
||||||
|
@ -20,7 +20,7 @@ export interface Sell
|
|||||||
/** Settings to control chances of offer being sold */
|
/** Settings to control chances of offer being sold */
|
||||||
chance: Chance;
|
chance: Chance;
|
||||||
/** Settings to control how long it takes for a player offer to sell */
|
/** Settings to control how long it takes for a player offer to sell */
|
||||||
time: Time;
|
time: MinMax;
|
||||||
/** Player offer reputation gain/loss settings */
|
/** Player offer reputation gain/loss settings */
|
||||||
reputation: Reputation;
|
reputation: Reputation;
|
||||||
/**Seconds from clicking remove to remove offer from market */
|
/**Seconds from clicking remove to remove offer from market */
|
||||||
@ -39,11 +39,6 @@ export interface Chance
|
|||||||
minSellChancePercent: number;
|
minSellChancePercent: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Time extends MinMax
|
|
||||||
{
|
|
||||||
base: number;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface Reputation
|
export interface Reputation
|
||||||
{
|
{
|
||||||
gain: number;
|
gain: number;
|
||||||
|
Loading…
Reference in New Issue
Block a user