Reset sleeves to max HP when starting a new node.

This commit is contained in:
Noah Kantrowitz 2022-09-10 17:44:50 -07:00
parent 596a04515d
commit 232dcab5cd

@ -159,6 +159,7 @@ export class Sleeve extends Person {
this.exp.agility = 0;
this.exp.charisma = 0;
this.updateStatLevels();
this.hp.current = this.hp.max;
// Reset task-related stuff
this.stopWork(p);