Move startDelay config, add M32 price
This commit is contained in:
parent
70b5057f8a
commit
7a3c064d25
@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
|
"startDelayInSeconds": 7,
|
||||||
"baselineBulletId": "59e6906286f7746c9f75e847",
|
"baselineBulletId": "59e6906286f7746c9f75e847",
|
||||||
"baselineBulletPrice": 3000,
|
"baselineBulletPrice": 3000,
|
||||||
"bulletDamageMultiplierRedutionFactor": 0.7,
|
"bulletDamageMultiplierRedutionFactor": 0.7,
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"startDelayInSeconds": 7,
|
|
||||||
"disableBsgBlacklist": true,
|
"disableBsgBlacklist": true,
|
||||||
"blacklistedItemPriceMultiplier": 1,
|
"blacklistedItemPriceMultiplier": 1,
|
||||||
"blacklistedAmmoAdditionalPriceMultiplier": 1,
|
"blacklistedAmmoAdditionalPriceMultiplier": 1,
|
||||||
@ -25,6 +24,11 @@
|
|||||||
"itemId": "5a367e5dc4a282000e49738f",
|
"itemId": "5a367e5dc4a282000e49738f",
|
||||||
"fleaPriceOverride": 150000
|
"fleaPriceOverride": 150000
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"itemIdHint": "M32 40mm MGL",
|
||||||
|
"itemId": "6275303a9f372d6ea97f9ec7",
|
||||||
|
"fleaPriceOverride": 200000
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"itemIdHint": "Thicc Items Case",
|
"itemIdHint": "Thicc Items Case",
|
||||||
"itemId": "5c0a840b86f7742ffa4f2482",
|
"itemId": "5c0a840b86f7742ffa4f2482",
|
||||||
|
@ -44,7 +44,7 @@ class TheBlacklistMod implements IPostDBLoadMod {
|
|||||||
this.logger = container.resolve<ILogger>("WinstonLogger");
|
this.logger = container.resolve<ILogger>("WinstonLogger");
|
||||||
|
|
||||||
// Easiest way to make mod compatible with Lua's flea updater is let the user choose when to load the mod...
|
// Easiest way to make mod compatible with Lua's flea updater is let the user choose when to load the mod...
|
||||||
setTimeout(() => this.initialiseMod(container), config.startDelayInSeconds * 1000);
|
setTimeout(() => this.initialiseMod(container), (advancedConfig.startDelayInSeconds || 7) * 1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
private initialiseMod(
|
private initialiseMod(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user