mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-03-08 11:29:19 +01:00
SLEEVE: FIX #3794
This commit is contained in:
@ -1221,7 +1221,7 @@ export class Sleeve extends Person {
|
||||
|
||||
this.hp -= amt;
|
||||
if (this.hp <= 0) {
|
||||
this.shock += 0.5;
|
||||
this.shock = Math.min(1, this.shock - 0.5);
|
||||
this.hp = this.max_hp;
|
||||
return true;
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user