We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4056161 commit a3b2443Copy full SHA for a3b2443
src/moomoo/Player.ts
@@ -92,7 +92,7 @@ export default class Player extends Entity {
92
);
93
}
94
95
- this.health += Math.min(this.health + healthRegen, 100);
+ this.health = Math.min(this.health + healthRegen, 100);
96
97
98
if (this.foodHealOverTimeAmt < this.maxFoodHealOverTime) {
0 commit comments