diff --git a/Libraries/SPTarkov.Server.Assets/SPT_Data/configs/ragfair.json b/Libraries/SPTarkov.Server.Assets/SPT_Data/configs/ragfair.json index 6d26acd6..992b8dbc 100644 --- a/Libraries/SPTarkov.Server.Assets/SPT_Data/configs/ragfair.json +++ b/Libraries/SPTarkov.Server.Assets/SPT_Data/configs/ragfair.json @@ -263,7 +263,7 @@ "adjustPriceWhenBelowHandbookPrice": false, "handbookPriceMultiplier": 1.1, "maxPriceDifferenceBelowHandbookPercent": 64, - "priceThreshholdRub": 20000 + "priceThresholdRub": 20000 }, "offerItemCount": { "default": { diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/RagfairConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/RagfairConfig.cs index b62f1be5..edf6d955 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/RagfairConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/RagfairConfig.cs @@ -357,7 +357,7 @@ public record OfferAdjustment /// /// What is the minimum rouble price to consider adjusting price of item /// - [JsonPropertyName("priceThreshholdRub")] + [JsonPropertyName("priceThresholdRub")] public double PriceThresholdRub { get; set; } }