From 8e20a97d5d1159646542a573ea6c540a8edd2416 Mon Sep 17 00:00:00 2001 From: R3ality Date: Sat, 26 Jul 2025 21:55:11 +0300 Subject: [PATCH] Fix typo in cultistCircle.rewardPriceMultiplerMinMax --- Libraries/SPTarkov.Server.Assets/SPT_Data/configs/hideout.json | 2 +- .../SPTarkov.Server.Core/Models/Spt/Config/HideoutConfig.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Libraries/SPTarkov.Server.Assets/SPT_Data/configs/hideout.json b/Libraries/SPTarkov.Server.Assets/SPT_Data/configs/hideout.json index e70d6292..01404e8e 100644 --- a/Libraries/SPTarkov.Server.Assets/SPT_Data/configs/hideout.json +++ b/Libraries/SPTarkov.Server.Assets/SPT_Data/configs/hideout.json @@ -12,7 +12,7 @@ "cultistCircle": { "maxRewardItemCount": 5, "maxAttemptsToPickRewardsWithinBudget": 5, - "rewardPriceMultiplerMinMax": { + "rewardPriceMultiplierMinMax": { "min": 0.7, "max": 1.4 }, diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/HideoutConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/HideoutConfig.cs index 03b48be6..90821e67 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/HideoutConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/HideoutConfig.cs @@ -78,7 +78,7 @@ public record CultistCircleSettings [JsonPropertyName("maxAttemptsToPickRewardsWithinBudget")] public int MaxAttemptsToPickRewardsWithinBudget { get; set; } - [JsonPropertyName("rewardPriceMultiplerMinMax")] + [JsonPropertyName("rewardPriceMultiplierMinMax")] public required MinMax RewardPriceMultiplierMinMax { get; set; } [JsonPropertyName("bonusChanceMultiplier")]