diff --git a/src/PersonObjects/PersonMethods.ts b/src/PersonObjects/PersonMethods.ts index c6349250e..0a879dcd5 100644 --- a/src/PersonObjects/PersonMethods.ts +++ b/src/PersonObjects/PersonMethods.ts @@ -196,7 +196,6 @@ export function updateSkillLevels(this: Person): void { const ratio: number = Math.min(this.hp.current / this.hp.max, 1); this.hp.max = Math.floor(10 + this.skills.defense / 10); this.hp.current = Math.round(this.hp.max * ratio); - }; } export function hasAugmentation(this: Person, augName: string, ignoreQueued = false) {