fix faction work not working correctly

This commit is contained in:
Olivier Gagnon 2022-07-20 15:08:04 -04:00
parent c9b9c2c55b
commit 4f86bc644c
4 changed files with 10 additions and 5 deletions

4
dist/main.bundle.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -73,7 +73,7 @@ function MainPage({ faction, rerender, onAugmentations }: IMainProps): React.Rea
new FactionWork({ new FactionWork({
singularity: false, singularity: false,
faction: faction.name, faction: faction.name,
factionWorkType: FactionWorkType.HACKING, factionWorkType: FactionWorkType.FIELD,
}), }),
); );
startWork(); startWork();
@ -95,7 +95,7 @@ function MainPage({ faction, rerender, onAugmentations }: IMainProps): React.Rea
new FactionWork({ new FactionWork({
singularity: false, singularity: false,
faction: faction.name, faction: faction.name,
factionWorkType: FactionWorkType.HACKING, factionWorkType: FactionWorkType.SECURITY,
}), }),
); );
startWork(); startWork();

5
src/Faction/ui/v2.txt Normal file

@ -0,0 +1,5 @@
- Change scp to be (files, destination, source)
- Remove top level sing
- Rename stock.buy and stock.sell
- https://github.com/danielyxie/bitburner/pull/3802
- https://github.com/danielyxie/bitburner/pull/3812