diff --git a/src/gui/quicklinks.js b/src/gui/quicklinks.js index 85418531546bc74e1cdbdc31f4fcbfcfbc54572c..403740eb7320d895652ce361f835730d8044a7d0 100644 --- a/src/gui/quicklinks.js +++ b/src/gui/quicklinks.js @@ -103,12 +103,12 @@ App.UI.quickMenu = (function() { Nursery: () => !V.nursery, "Organ Farm": () => !V.organFarmUpgrade, Pit: () => !V.pit, - propagandaHub: () => V.secExpEnabled <= 0 || V.SecExp.buildings.propHub.active <= 0, + propagandaHub: () => V.secExpEnabled !== 1 || V.SecExp.buildings.propHub.active <= 0, "Prosthetic Lab": () => V.researchLab.level === 0, - riotControlCenter: () => V.secExpEnabled <= 0 || V.riotCenter <= 0, + riotControlCenter: () => V.secExpEnabled !== 1 || V.riotCenter <= 0, Schoolroom: () => !V.schoolroom, - secBarracks: () => V.secExpEnabled <= 0 || V.SecExp.buildings.barracks.active <= 0, - securityHQ: () => V.secExpEnabled <= 0 || V.secHQ <= 0, + secBarracks: () => V.secExpEnabled !== 1 || V.SecExp.buildings.barracks.active <= 0, + securityHQ: () => V.secExpEnabled !== 1 || V.secHQ <= 0, "Servants' Quarters": () => !V.servantsQuarters, Spa: () => !V.spa, "The Black Market": () => V.rep < 10000,