mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-18 21:53:50 +01:00
format & lint fix
This commit is contained in:
parent
b364cdf734
commit
81412db02e
@ -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[] = [];
|
||||
|
Loading…
Reference in New Issue
Block a user