diff --git a/src/PersonObjects/Player/PlayerObjectGeneralMethods.ts b/src/PersonObjects/Player/PlayerObjectGeneralMethods.ts index 801cd0519..c43351a1f 100644 --- a/src/PersonObjects/Player/PlayerObjectGeneralMethods.ts +++ b/src/PersonObjects/Player/PlayerObjectGeneralMethods.ts @@ -137,6 +137,8 @@ export function prestigeAugmentation(this: PlayerObject): void { // Reapply augs, re-calculate skills and reset HP this.reapplyAllAugmentations(true); this.hp = this.max_hp; + + this.finishWork(true); } export function prestigeSourceFile(this: IPlayer): void { diff --git a/src/ui/WorkInProgressRoot.tsx b/src/ui/WorkInProgressRoot.tsx index 48ec3ce71..4d51c2d14 100644 --- a/src/ui/WorkInProgressRoot.tsx +++ b/src/ui/WorkInProgressRoot.tsx @@ -375,7 +375,6 @@ export function WorkInProgressRoot(): React.ReactElement { const position = player.jobs[player.currentWork.companyName]; const gains = player.currentWork.getGainRates(player); - console.log(player.currentWork.cyclesWorked); workInfo = { buttons: { cancel: cancel,