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")]