From 49d2df1f0b96e80ea131584a0bf0ff2563db89e1 Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Sun, 6 Mar 2022 13:50:06 -0500 Subject: [PATCH] Fix not being able to fire prosthetic lab menials --- src/interaction/prostheticLabPassage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interaction/prostheticLabPassage.js b/src/interaction/prostheticLabPassage.js index 6c2858a02d3..9f2faebb0d3 100644 --- a/src/interaction/prostheticLabPassage.js +++ b/src/interaction/prostheticLabPassage.js @@ -154,7 +154,7 @@ App.UI.prostheticLab = function() { if (V.researchLab.menials > 0) { linkArray = []; for (const num of [1, 5, 10]) { - if (V.researchLab.hired >= num) { + if (V.researchLab.menials >= num) { linkArray.push(App.UI.DOM.link( `${num}x`, () => { -- GitLab