Rebase fix, move hasAugmentation to Person

This commit is contained in:
Snarling
2022-09-27 13:20:42 -04:00
parent 8a9515f154
commit b364cdf734
4 changed files with 6 additions and 27 deletions

View File

@@ -53,9 +53,7 @@ export class PlayerObject extends Person {
moneySourceB = new MoneySourceTracker();
playtimeSinceLastAug = 0;
playtimeSinceLastBitnode = 0;
purchasedServers: string[] = [];
queuedAugmentations: IPlayerOwnedAugmentation[] = [];
scriptProdSinceLastAug = 0;
purchasedServers: string[] = []; scriptProdSinceLastAug = 0;
sleeves: Sleeve[] = [];
sleevesFromCovenant = 0;
sourceFiles: PlayerOwnedSourceFile[] = [];
@@ -105,7 +103,6 @@ export class PlayerObject extends Person {
getUpgradeHomeRamCost = serverMethods.getUpgradeHomeRamCost;
getUpgradeHomeCoresCost = serverMethods.getUpgradeHomeCoresCost;
gotoLocation = generalMethods.gotoLocation;
hasAugmentation = augmentationMethods.hasAugmentation;
hasCorporation = corporationMethods.hasCorporation;
hasGangWith = gangMethods.hasGangWith;
hasTorRouter = serverMethods.hasTorRouter;