Merge branch 'dev' of github.com:danielyxie/bitburner into improvement/purchase-augs-ui

This commit is contained in:
nickofolas
2022-04-22 16:45:15 -05:00
37 changed files with 885 additions and 186 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ function possibleJobs(player: IPlayer, sleeve: Sleeve): string[] {
function possibleFactions(player: IPlayer, sleeve: Sleeve): string[] {
// Array of all factions that other sleeves are working for
const forbiddenFactions = [FactionNames.Bladeburners as string];
const forbiddenFactions = [FactionNames.Bladeburners as string, FactionNames.ShadowsOfAnarchy as string];
if (player.gang) {
forbiddenFactions.push(player.gang.facName);
}