From 81412db02e2f7e81f62f6fd1de14de970b93e4ac Mon Sep 17 00:00:00 2001 From: Snarling <84951833+Snarling@users.noreply.github.com> Date: Tue, 27 Sep 2022 13:27:17 -0400 Subject: [PATCH] format & lint fix --- src/PersonObjects/Person.ts | 13 ++++--------- src/PersonObjects/Player/PlayerObject.ts | 3 ++- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/src/PersonObjects/Person.ts b/src/PersonObjects/Person.ts index 794f2ed62..e1e8c3243 100644 --- a/src/PersonObjects/Person.ts +++ b/src/PersonObjects/Person.ts @@ -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(); } diff --git a/src/PersonObjects/Player/PlayerObject.ts b/src/PersonObjects/Player/PlayerObject.ts index 7ee34ca1f..7a08ca5d7 100644 --- a/src/PersonObjects/Player/PlayerObject.ts +++ b/src/PersonObjects/Player/PlayerObject.ts @@ -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[] = [];