From ec6a9f1e543c6c0ee6ee1e0ac21e68172fb588c1 Mon Sep 17 00:00:00 2001 From: Arkerthan <arkerthan@mailbox.org> Date: Sun, 30 Mar 2025 14:40:02 +0200 Subject: [PATCH] Fix jump tags for sec exp facilities --- src/005-passages/facilitiesPassages.js | 4 ++-- src/gui/quicklinks.js | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/005-passages/facilitiesPassages.js b/src/005-passages/facilitiesPassages.js index bbb8e189313..910e82a782e 100644 --- a/src/005-passages/facilitiesPassages.js +++ b/src/005-passages/facilitiesPassages.js @@ -29,8 +29,8 @@ new App.DomPassage("Servants' Quarters", () => { return new App.Facilities.Serva new App.DomPassage("Spa", () => { return new App.Facilities.Spa.spa().render(); }, ["jump-to-safe", "jump-from-safe"]); -new App.DomPassage("Transport Hub", () => { return App.Mods.SecExp.transportHub.GUI(); }); -new App.DomPassage("Weapons Manufacturing", () => { return App.Mods.SecExp.weapManu.GUI(); }, ["jump-to-safe", "jump-from-safe"]); +new App.DomPassage("Transport Hub", () => { return App.Mods.SecExp.transportHub.GUI(); }, ["jump-to-safe", "jump-hidden", "jump-from-safe"]); +new App.DomPassage("Weapons Manufacturing", () => { return App.Mods.SecExp.weapManu.GUI(); }, ["jump-to-safe", "jump-hidden", "jump-from-safe"]); new App.DomPassage("securityHQ", () => { return App.Mods.SecExp.secHub.GUI(); }, ["jump-to-safe", "jump-from-safe"]); new App.DomPassage("secBarracks", () => { return App.Mods.SecExp.barracks.GUI(); }, ["jump-to-safe", "jump-from-safe"]); new App.DomPassage("riotControlCenter", () => { return App.Mods.SecExp.riotCenter.GUI(); }, ["jump-to-safe", "jump-from-safe"]); diff --git a/src/gui/quicklinks.js b/src/gui/quicklinks.js index 263a1ca55ad..e3bb880bc09 100644 --- a/src/gui/quicklinks.js +++ b/src/gui/quicklinks.js @@ -119,7 +119,6 @@ App.UI.quickMenu = (function() { "Servants' Quarters": () => !App.Entity.facilities.servantsQuarters.established, "Spa": () => !V.spa, "The Black Market": () => V.rep < 10000, - "Weapons Manufacturing": () => true, }); // show different names than the actual passage name, can be a function -- GitLab