From 6748017dd8e11c0eb2752b8668aa90a94f47413a Mon Sep 17 00:00:00 2001 From: Undeemiss Date: Mon, 9 May 2022 15:17:42 -0500 Subject: [PATCH] Require Blade's Simulacrum be installed in order to take effect The check for when an action is started was not set to ignore a purchased but not yet installed Blade's Simulacrum. That is fixed here. --- src/Bladeburner/Bladeburner.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bladeburner/Bladeburner.tsx b/src/Bladeburner/Bladeburner.tsx index c1c7216ce..a2d6b21de 100644 --- a/src/Bladeburner/Bladeburner.tsx +++ b/src/Bladeburner/Bladeburner.tsx @@ -1919,7 +1919,7 @@ export class Bladeburner implements IBladeburner { } // If the Player starts doing some other actions, set action to idle and alert - if (player.hasAugmentation(AugmentationNames.BladesSimulacrum) === false && player.isWorking) { + if (!player.hasAugmentation(AugmentationNames.BladesSimulacrum, true) && player.isWorking) { if (this.action.type !== ActionTypes["Idle"]) { let msg = "Your Bladeburner action was cancelled because you started doing something else."; if (this.automateEnabled) {