From b5b24b2003d7cf005cd156b091a175dc090c40ce Mon Sep 17 00:00:00 2001 From: R3ality Date: Sun, 27 Jul 2025 13:04:50 +0300 Subject: [PATCH] Fix typo in traderPriceMultipler --- Libraries/SPTarkov.Server.Assets/SPT_Data/configs/trader.json | 2 +- .../SPTarkov.Server.Core/Models/Spt/Config/TraderConfig.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Libraries/SPTarkov.Server.Assets/SPT_Data/configs/trader.json b/Libraries/SPTarkov.Server.Assets/SPT_Data/configs/trader.json index 37e6610c..665bb728 100644 --- a/Libraries/SPTarkov.Server.Assets/SPT_Data/configs/trader.json +++ b/Libraries/SPTarkov.Server.Assets/SPT_Data/configs/trader.json @@ -84,7 +84,7 @@ "updateTimeDefault": 3600, "tradersResetFromServerStart": true, "purchasesAreFoundInRaid": false, - "traderPriceMultipler": 1, + "traderPriceMultiplier": 1, "fence": { "discountOptions": { "assortSize": 45, diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/TraderConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/TraderConfig.cs index 541f2230..40692ef2 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/TraderConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/TraderConfig.cs @@ -24,7 +24,7 @@ public record TraderConfig : BaseConfig [JsonPropertyName("tradersResetFromServerStart")] public bool TradersResetFromServerStart { get; set; } - [JsonPropertyName("traderPriceMultipler")] + [JsonPropertyName("traderPriceMultiplier")] public double TraderPriceMultiplier { get; set; } [JsonPropertyName("fence")]