diff --git a/src/Mods/SpecialForce/SpecialForce.js b/src/Mods/SpecialForce/SpecialForce.js index a1065f6e724059142de128822cdd975b0c3d6354..5eae483002be2069a64fbcb3559639c8ea042865 100644 --- a/src/Mods/SpecialForce/SpecialForce.js +++ b/src/Mods/SpecialForce/SpecialForce.js @@ -2362,11 +2362,11 @@ App.SF.AAR = function(endWeekCall = 1) { upkeep *= 0.75 + (V.SF.ArmySize/10000); } - if (between(V.economy, 33, 100)) { + if (V.economy < 100) { let multiplier = (1.75 * Math.sqrt(Math.trunc(100000/V.economy-1000)/10)) + (0.2 * (Math.trunc(100000/V.economy-1000)/10)); income *= (1 + multiplier/100); - } else if (V.economy <= 33) { // There comes a point where a worse global economy no longer benefits your Special Forces. - let multiplier = (1.75 * Math.sqrt(Math.trunc(100000/33-1000)/10)) + (0.2 * (Math.trunc(100000/33-1000)/10)); + } else if (V.economy === 67) { // There comes a point where a worse global economy no longer benefits your Special Forces. + let multiplier = (1.75 * Math.sqrt(Math.trunc(100000/67-1000)/10)) + (0.2 * (Math.trunc(100000/67-1000)/10)); income *= (1 + multiplier/100); }