From ff159809dd327942fe397baf794458eea292a685 Mon Sep 17 00:00:00 2001 From: Dev Date: Tue, 15 Oct 2024 14:53:33 +0100 Subject: [PATCH] EXPERIMENTAL, dont include trader offers in avg/min/max calculation --- project/src/controllers/RagfairController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/controllers/RagfairController.ts b/project/src/controllers/RagfairController.ts index 42f4702e..d5f9341a 100644 --- a/project/src/controllers/RagfairController.ts +++ b/project/src/controllers/RagfairController.ts @@ -310,7 +310,7 @@ export class RagfairController { */ public getItemMinAvgMaxFleaPriceValues( getPriceRequest: IGetMarketPriceRequestData, - ignoreTraderOffers = false, + ignoreTraderOffers = true, ): IGetItemPriceResult { // Get all items of tpl const offers = this.ragfairOfferService.getOffersOfType(getPriceRequest.templateId);