Fix typo in cultistCircle.rewardPriceMultiplerMinMax

This commit is contained in:
R3ality
2025-07-26 21:55:11 +03:00
parent b45d5befb1
commit 8e20a97d5d
2 changed files with 2 additions and 2 deletions
@@ -12,7 +12,7 @@
"cultistCircle": {
"maxRewardItemCount": 5,
"maxAttemptsToPickRewardsWithinBudget": 5,
"rewardPriceMultiplerMinMax": {
"rewardPriceMultiplierMinMax": {
"min": 0.7,
"max": 1.4
},
@@ -78,7 +78,7 @@ public record CultistCircleSettings
[JsonPropertyName("maxAttemptsToPickRewardsWithinBudget")]
public int MaxAttemptsToPickRewardsWithinBudget { get; set; }
[JsonPropertyName("rewardPriceMultiplerMinMax")]
[JsonPropertyName("rewardPriceMultiplierMinMax")]
public required MinMax<double> RewardPriceMultiplierMinMax { get; set; }
[JsonPropertyName("bonusChanceMultiplier")]