From a2f948e9787990f38c19f4544558e8459ffa95ac Mon Sep 17 00:00:00 2001
From: Blank_Alt <>
Date: Fri, 14 Aug 2020 09:23:07 +1200
Subject: [PATCH] done

---
 src/Mods/SecExp/buildings/secBarracks.tw | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/Mods/SecExp/buildings/secBarracks.tw b/src/Mods/SecExp/buildings/secBarracks.tw
index b1a4bf3e904..55e7e22113f 100644
--- a/src/Mods/SecExp/buildings/secBarracks.tw
+++ b/src/Mods/SecExp/buildings/secBarracks.tw
@@ -157,21 +157,21 @@ Your current maximum number of units is <<print App.SecExp.battle.maxUnits()>> (
 		<<= App.SecExp.getUnit("Bots").describe()>> <br>
 		<<if $secBots.active == 1>>
 			<<if $secBots.maxTroops > $secBots.troops>> <br>
-				<<link "Replenish the unit" "seeUnit">>
+				<<link "Replenish the unit" "secBarracks">>
 					<<run cashX(forceNeg(($secBots.maxTroops - $secBots.troops) * _secBotsCost), "securityExpansion")>>
 					<<set $secBots.troops = $secBots.maxTroops>>
 				<</link>>
 			<</if>>
 			<br>
 			<<if $secBots.maxTroops < 80>> <br>
-				<<link "Improve the digital control matrix" "seeUnit">>
+				<<link "Improve the digital control matrix" "secBarracks">>
 					<<set $secBots.maxTroops += 10>>
 					<<run cashX(-5000, "securityExpansion")>>
 				<</link>>
 				Invest in the development of more refined controls for your drones to increase the maximum number of drones in the unit.
 				<br>//Costs <<print cashFormat(5000)>> per upgrade and each will increase the max by 10//
 			<<elseif $SF.Toggle && $SF.Active >= 1 && $secBots.maxTroops < 100 && $SecExp.edicts.SFSupportLevel >= 1>> <br>
-				<<link "Refine the drone network with $SF.Lower assistance" "seeUnit">>
+				<<link "Refine the drone network with $SF.Lower assistance" "secBarracks">>
 				<<set $secBots.maxTroops += 10>>
 					<<run cashX(forceNeg(5000 + 10 * _secBotsUpgradeCost * $secBots.equip), "securityExpansion")>>
 				<</link>>
@@ -183,7 +183,7 @@ Your current maximum number of units is <<print App.SecExp.battle.maxUnits()>> (
 				There's little left to improve in the matrix. Your control systems are at top capacity and won't be able to handle a bigger drone unit.
 			<</if>>
 			<<if $secBots.equip < 3>> <br>
-				<<link "Improve drone weaponry and armor" "seeUnit">>
+				<<link "Improve drone weaponry and armor" "secBarracks">>
 					<<set $secBots.equip += 1>>
 					<<run cashX(forceNeg((_secBotsUpgradeCost * $secBots.maxTroops) + 1000), "securityExpansion")>>
 				<</link>>
-- 
GitLab