Skip to content

Commit a3b2443

Browse files
author
Picoseconds
committed
fix: fix healing hats again
1 parent 4056161 commit a3b2443

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/moomoo/Player.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export default class Player extends Entity {
9292
);
9393
}
9494

95-
this.health += Math.min(this.health + healthRegen, 100);
95+
this.health = Math.min(this.health + healthRegen, 100);
9696
}
9797

9898
if (this.foodHealOverTimeAmt < this.maxFoodHealOverTime) {

0 commit comments

Comments
 (0)