From f8af04e5b3473956ff9e45fa709099e816f011ab Mon Sep 17 00:00:00 2001 From: omuretsu <84951833+Snarling@users.noreply.github.com> Date: Tue, 3 Jan 2023 02:16:48 -0500 Subject: [PATCH] Fix broken HP --- src/PersonObjects/PersonMethods.ts | 1 - 1 file changed, 1 deletion(-) 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) {