diff --git a/src/client/process/agents/reactions.ts b/src/client/process/agents/reactions.ts index 52648b8..0a70557 100644 --- a/src/client/process/agents/reactions.ts +++ b/src/client/process/agents/reactions.ts @@ -503,7 +503,7 @@ export default function agentsReactions($calculation: ICalculationStore) { }); } else if ( indAgentRewardCondition?.evo_min_reward_summ && - indAgentRewardSumm > indAgentRewardCondition.evo_min_reward_summ + indAgentRewardSumm < indAgentRewardCondition.evo_min_reward_summ ) { $calculation.setValidation('tbxIndAgentRewardSumm', false); openNotification({ @@ -553,7 +553,7 @@ export default function agentsReactions($calculation: ICalculationStore) { }); } else if ( selectCalcDoubleAgentRewardCondition?.evo_min_reward_summ && - calcDoubleAgentRewardSumm > + calcDoubleAgentRewardSumm < selectCalcDoubleAgentRewardCondition.evo_min_reward_summ ) { $calculation.setValidation('tbxCalcDoubleAgentRewardSumm', false);