mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
WORK: FIX #2721 Singularity faction work logging.
fixes #2721 Player's faction-work-related property were reset to 0 before the singularity's log message was formatted. I anticipate (really) minor conflict with Work System rework PR.
This commit is contained in:
parent
b2659318c8
commit
8e94878380
@ -993,6 +993,7 @@ export function finishFactionWork(this: IPlayer, cancelled: boolean, sing = fals
|
||||
faction.playerReputation += this.workRepGained;
|
||||
|
||||
this.updateSkillLevels();
|
||||
let res = "";
|
||||
|
||||
if (!sing) {
|
||||
dialogBoxCreate(
|
||||
@ -1013,12 +1014,8 @@ export function finishFactionWork(this: IPlayer, cancelled: boolean, sing = fals
|
||||
<br />
|
||||
</>,
|
||||
);
|
||||
}
|
||||
|
||||
this.isWorking = false;
|
||||
this.resetWorkStatus();
|
||||
if (sing) {
|
||||
const res =
|
||||
} else {
|
||||
res =
|
||||
"You worked for your faction " +
|
||||
faction.name +
|
||||
" for a total of " +
|
||||
@ -1039,10 +1036,11 @@ export function finishFactionWork(this: IPlayer, cancelled: boolean, sing = fals
|
||||
" agi exp, and " +
|
||||
numeralWrapper.formatExp(this.workChaExpGained) +
|
||||
" cha exp.";
|
||||
|
||||
return res;
|
||||
}
|
||||
return "";
|
||||
|
||||
this.isWorking = false;
|
||||
this.resetWorkStatus();
|
||||
return res;
|
||||
}
|
||||
|
||||
//Money gained per game cycle
|
||||
|
Loading…
Reference in New Issue
Block a user