Skip to content
Snippets Groups Projects
Commit 3fac3871 authored by Akane's avatar Akane
Browse files

glitch: double negative, instead of spending authority on riot teams - you are gaining it. fix.

parent fcfe6596
No related branches found
No related tags found
1 merge request!11458glitch: double negative, instead of spending authority on riot teams - you are gaining it. fix.
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment