mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 09:50:43 -05:00
Reduce server start time when running in debug mode by generating less flea offers
This commit is contained in:
parent
f5600fe215
commit
bd00542793
@ -1,3 +1,4 @@
|
|||||||
|
import { ProgramStatics } from "@spt/ProgramStatics";
|
||||||
import { RagfairAssortGenerator } from "@spt/generators/RagfairAssortGenerator";
|
import { RagfairAssortGenerator } from "@spt/generators/RagfairAssortGenerator";
|
||||||
import { BotHelper } from "@spt/helpers/BotHelper";
|
import { BotHelper } from "@spt/helpers/BotHelper";
|
||||||
import { HandbookHelper } from "@spt/helpers/HandbookHelper";
|
import { HandbookHelper } from "@spt/helpers/HandbookHelper";
|
||||||
@ -386,10 +387,14 @@ export class RagfairOfferGenerator {
|
|||||||
|
|
||||||
// Get number of offers to create
|
// Get number of offers to create
|
||||||
// Limit to 1 offer when processing expired - like-for-like replacement
|
// Limit to 1 offer when processing expired - like-for-like replacement
|
||||||
const offerCount = isExpiredOffer
|
let offerCount = isExpiredOffer
|
||||||
? 1
|
? 1
|
||||||
: Math.round(this.randomUtil.getInt(config.offerItemCount.min, config.offerItemCount.max));
|
: Math.round(this.randomUtil.getInt(config.offerItemCount.min, config.offerItemCount.max));
|
||||||
|
|
||||||
|
if (ProgramStatics.DEBUG && !ProgramStatics.COMPILED) {
|
||||||
|
offerCount = 2;
|
||||||
|
}
|
||||||
|
|
||||||
// Store all functions to create offers for this item and pass into Promise.all to run async
|
// Store all functions to create offers for this item and pass into Promise.all to run async
|
||||||
const assortSingleOfferProcesses = [];
|
const assortSingleOfferProcesses = [];
|
||||||
for (let index = 0; index < offerCount; index++) {
|
for (let index = 0; index < offerCount; index++) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user