Fix broken HP

This commit is contained in:
omuretsu 2023-01-03 02:16:48 -05:00
parent 855cedfa7f
commit f8af04e5b3

@ -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) {