API: FIX#2884 Add the missing className property to Sleeve'sAPI

fixes #2884.
This commit is contained in:
borisflagell 2022-05-23 19:20:33 +02:00
parent 27bf6cba39
commit 051393fac9
2 changed files with 3 additions and 0 deletions

@ -190,6 +190,7 @@ export function NetscriptSleeve(player: IPlayer): InternalAPI<ISleeve> {
location: sl.currentTaskLocation,
gymStatType: sl.gymStatType,
factionWorkType: FactionWorkType[sl.factionWorkType],
className: sl.className,
};
},
getInformation:

@ -1110,6 +1110,8 @@ export interface SleeveTask {
gymStatType: string;
/** Faction work type being performed, if any */
factionWorkType: string;
/** Class being taken at university, if any */
className: string;
}
/**