From e54c7722e19589e0794e2321612bb9e2073ee70d Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Sat, 24 Oct 2020 14:29:51 -0700 Subject: [PATCH] Fix unboosted militia recruitment --- src/Mods/SecExp/js/secExp.js | 2 +- src/Mods/SecExp/securityReport.tw | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mods/SecExp/js/secExp.js b/src/Mods/SecExp/js/secExp.js index 4cef0f7b3d5..a87c30a6bd7 100644 --- a/src/Mods/SecExp/js/secExp.js +++ b/src/Mods/SecExp/js/secExp.js @@ -47,7 +47,7 @@ App.SecExp.propagandaEffects = function(focus) { break; case "recruitment": campaign = 'militia recruitment'; - modifier = forcedViewing ? 1.2 : 1.15; + modifier = forcedViewing ? 0.2 : 0.15; if (noRecruiter) { increase += (forcedViewing ? 1.1 : 1.05) * modifier; } else if (recruiterActive) { diff --git a/src/Mods/SecExp/securityReport.tw b/src/Mods/SecExp/securityReport.tw index 3cc7a8d6bf6..ce5a7a471e2 100644 --- a/src/Mods/SecExp/securityReport.tw +++ b/src/Mods/SecExp/securityReport.tw @@ -344,7 +344,7 @@ Due to the deterioration of the old world countries, organized crime focuses mor <</if>> <<set _propagandaEffects = App.SecExp.propagandaEffects("recruitment")>> _propagandaEffects.text - <<set _recruitsMultiplier *= _propagandaEffects.effect>> + <<set _recruitsMultiplier *= (1 + _propagandaEffects.effect)>> <<if $SecExp.edicts.defense.militia === 2>> Your militia accepts only volunteering citizens, ready to defend their arcology. <<set _recruitLimit = App.SecExp.militiaCap(), _adjst = 0.0025>> -- GitLab