format & lint fix

This commit is contained in:
Snarling 2022-09-27 13:27:17 -04:00
parent b364cdf734
commit 81412db02e
2 changed files with 6 additions and 10 deletions

@ -32,14 +32,11 @@ export abstract class Person {
mults = defaultMultipliers();
/**
* Augmentations
*/
/** Augmentations */
augmentations: IPlayerOwnedAugmentation[] = [];
queuedAugmentations: IPlayerOwnedAugmentation[] = [];
/**
* City that the person is in
*/
/** City that the person is in */
city: CityName = CityName.Sector12;
gainHackingExp = personMethods.gainHackingExp;
@ -55,9 +52,7 @@ export abstract class Person {
updateSkillLevels = personMethods.updateSkillLevels;
calculateSkill = calculateSkill; //Class version is equal to imported version
/**
* Reset all multipliers to 1
*/
/** Reset all multipliers to 1 */
resetMultipliers() {
this.mults = defaultMultipliers();
}

@ -53,7 +53,8 @@ export class PlayerObject extends Person {
moneySourceB = new MoneySourceTracker();
playtimeSinceLastAug = 0;
playtimeSinceLastBitnode = 0;
purchasedServers: string[] = []; scriptProdSinceLastAug = 0;
purchasedServers: string[] = [];
scriptProdSinceLastAug = 0;
sleeves: Sleeve[] = [];
sleevesFromCovenant = 0;
sourceFiles: PlayerOwnedSourceFile[] = [];