From c86e378581454b6187dd383ffcb0b7c596a6e325 Mon Sep 17 00:00:00 2001 From: kopareigns <kopareigns@gmail.com> Date: Sun, 1 Apr 2018 01:25:02 -0400 Subject: [PATCH] Attempted fix at negative riotUpkeep --- src/SecExp/riotControlCenter.tw | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/SecExp/riotControlCenter.tw b/src/SecExp/riotControlCenter.tw index 4cc5612e6f8..962d9b99dbb 100644 --- a/src/SecExp/riotControlCenter.tw +++ b/src/SecExp/riotControlCenter.tw @@ -150,17 +150,17 @@ The riot control center opens its guarded doors to you. The great chamber inside <<set $riotUpkeep += 5000>> <<goto "riotControlCenter">> <</link>> - <br>//Will take weeks of work and will cost 10000 each, but once finished rebellions will progress a lot slower.// + <br>//Will take weeks of work and will cost 5000 each week, but once finished rebellions will progress a lot slower.// <<elseif $brainImplantProject < 5>> <<link "Invest more resources in the brain implant project">> <<set $brainImplantProject += 1>> <<set $cash -= 50000 * $upgradeMultiplierArcology * $brainImplantProject*$HackingSkillMultiplier>> <<set $PC.hacking += 1>> - <<set $riotUpkeep += $upgradeUpkeep * 100>> + <<set $riotUpkeep += 5000>> <<goto "riotControlCenter">> <</link>> <br>Invest more resources into the project to increase its speed. - <br>//Costs <<print cashFormat(Math.trunc(50000 * $upgradeMultiplierArcology * $brainImplantProject*$HackingSkillMultiplier))>>. Will shorten the time required to complete the project.// + <br>//One-time cost of <<print cashFormat(Math.trunc(50000 * $upgradeMultiplierArcology * $brainImplantProject*$HackingSkillMultiplier))>> with an additional 5000 each week in maintenance. Will shorten the time required to complete the project.// <<else>> You sped up the project to its maximum. <</if>> -- GitLab