mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-16 14:28:36 +02:00
format & lint fix
This commit is contained in:
@@ -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[] = [];
|
||||
|
||||
Reference in New Issue
Block a user