From cd6c98a1d7650c975268c61295571b586b1fcc8b Mon Sep 17 00:00:00 2001 From: Chomp Date: Mon, 17 Nov 2025 16:23:21 +0000 Subject: [PATCH] Fixed `AdjustUnreasonablePrice` not correctly adjusting prices --- .../SPTarkov.Server.Core/Services/RagfairPriceService.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Libraries/SPTarkov.Server.Core/Services/RagfairPriceService.cs b/Libraries/SPTarkov.Server.Core/Services/RagfairPriceService.cs index 494fd6c3..f379c948 100644 --- a/Libraries/SPTarkov.Server.Core/Services/RagfairPriceService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/RagfairPriceService.cs @@ -389,10 +389,6 @@ public class RagfairPriceService( protected double AdjustUnreasonablePrice(UnreasonableModPrices unreasonableItemChange, MongoId itemTpl, double price) { var itemHandbookPrice = handbookHelper.GetTemplatePrice(itemTpl); - if (itemHandbookPrice > 0) - { - return price; - } // Flea price is over handbook price if (price > itemHandbookPrice * unreasonableItemChange.HandbookPriceOverMultiplier)