From ba99612d5d43e26a263ade466ec3ffc81d00c554 Mon Sep 17 00:00:00 2001 From: Sage Pointer Date: Thu, 6 Jan 2022 01:46:53 +0200 Subject: [PATCH] Fix "BN3+" achievement triggered for BN2 --- src/Electron.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Electron.tsx b/src/Electron.tsx index 37aa66d2d..89268a8d1 100644 --- a/src/Electron.tsx +++ b/src/Electron.tsx @@ -312,7 +312,7 @@ const achievements: Achievement[] = [ }, { ID: "CHALLENGE_BN3", - Condition: () => Player.bitNodeN === 2 && bitNodeFinishedState() && Player.corporation === null, + Condition: () => Player.bitNodeN === 3 && bitNodeFinishedState() && Player.corporation === null, }, { ID: "CHALLENGE_BN6",