Bladeburner can be accessed from other bitnodes if the player has SF7

This commit is contained in:
Olivier Gagnon 2021-03-07 16:32:56 -05:00
parent 79a06dd91c
commit a290b0bef5

@ -4,7 +4,7 @@ import { SourceFileFlags } from "../../SourceFile/SourceFileFlags";
export function canAccessBladeburner() {
if (this.bitNodeN === 8) { return false; }
return (this.bitNodeN === 6) || (this.bitNodeN === 7) || (SourceFileFlags[6] > 0);
return (this.bitNodeN === 6) || (this.bitNodeN === 7) || (SourceFileFlags[6] > 0) || (SourceFileFlags[7] > 0);
}
export function inBladeburner() {