Sleeve work type changes (#412)

This commit is contained in:
Snarling
2023-03-07 18:03:13 -05:00
committed by GitHub
parent 51bf0d1904
commit 401bfe9f31
13 changed files with 142 additions and 226 deletions
@@ -6,8 +6,9 @@ export const isSleeveSupportWork = (w: Work | null): w is SleeveSupportWork =>
w !== null && w.type === WorkType.SUPPORT;
export class SleeveSupportWork extends Work {
type: WorkType.SUPPORT = WorkType.SUPPORT;
constructor() {
super(WorkType.SUPPORT);
super();
Player.bladeburner?.sleeveSupport(true);
}