Fmt and lint

This commit is contained in:
rderfler
2022-04-14 15:28:13 -04:00
parent 9d18118208
commit 332b803332
7 changed files with 154 additions and 75 deletions
+4 -3
View File
@@ -304,9 +304,6 @@ export class PlayerObject implements IPlayer {
graftAugmentationWork: (numCycles: number) => boolean;
finishGraftAugmentationWork: (cancelled: boolean) => string;
applyEntropy: (stacks?: number) => void;
whoAmI(): string {
return "Player";
}
constructor() {
//Skills and stats
@@ -634,6 +631,10 @@ export class PlayerObject implements IPlayer {
this.applyEntropy = augmentationMethods.applyEntropy;
}
whoAmI(): string {
return "Player";
}
/**
* Serialize the current object to a JSON save state.
*/