diff --git a/src/Mods/SecExp/buildings/riotControlCenter.js b/src/Mods/SecExp/buildings/riotControlCenter.js index 8c15159d4104c08fb4c87315e43145a5801f8eab..48f95762ceec62e2bccafb9ef92f9bcc6b902794 100644 --- a/src/Mods/SecExp/buildings/riotControlCenter.js +++ b/src/Mods/SecExp/buildings/riotControlCenter.js @@ -237,7 +237,7 @@ App.Mods.SecExp.riotCenter = (function() { `Deploy the unit against ${type} rebel leaders`, () => { const price = forceNeg(1000 + 50 * V.SecExp.buildings.riotCenter.upgrades.rapidUnit); - (function() { cost === "reputation" ? repX(price, "war") : App.Mods.SecExp.authorityX(-price); })(); + (function() { cost === "reputation" ? repX(price, "war") : App.Mods.SecExp.authorityX(price); })(); const change = random(15) + random(1, 2) * V.SecExp.buildings.riotCenter.upgrades.rapidUnit; V.SecExp.rebellions[type + "Progress"] = Math.clamp(V.SecExp.rebellions[type + "Progress"] - change, 0, 100); V.SecExp.buildings.riotCenter.sentUnitCooldown = 3 - V.SecExp.buildings.riotCenter.upgrades.rapidUnitSpeed;