NETSCRIPT: Added cyclesWorked to certain sleeve.getTask returns, and added bladeburner.getActionSuccesses (#324)

This commit is contained in:
Zelow79
2023-01-15 23:50:54 -05:00
committed by GitHub
parent 6f0b3d07b8
commit 5f923a348c
6 changed files with 27 additions and 2 deletions
@@ -67,6 +67,7 @@ export class SleeveBladeburnerWork extends Work {
type: WorkType.BLADEBURNER as "BLADEBURNER",
actionType: this.actionType,
actionName: this.actionName,
cyclesWorked: this.cyclesWorked,
};
}
@@ -51,6 +51,7 @@ export class SleeveCrimeWork extends Work {
return {
type: WorkType.CRIME as "CRIME",
crimeType: this.crimeType,
cyclesWorked: this.cyclesWorked,
};
}
@@ -32,6 +32,7 @@ export class SleeveInfiltrateWork extends Work {
APICopy() {
return {
type: WorkType.INFILTRATE as "INFILTRATE",
cyclesWorked: this.cyclesWorked,
};
}