mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-19 12:45:45 +01:00
BUGFIX: Wrong team size when all team members die in Bladeburner's action (#1658)
This commit is contained in:
parent
21ffa5322f
commit
70e16bf349
@ -1052,7 +1052,8 @@ export class Bladeburner {
|
||||
sup[r].takeDamage(sup[r].hp.max);
|
||||
sup.splice(r, 1);
|
||||
}
|
||||
this.teamSize += this.sleeveSize;
|
||||
// If this happens, all team members died and some sleeves took damage. In this case, teamSize = sleeveSize.
|
||||
this.teamSize = this.sleeveSize;
|
||||
}
|
||||
this.teamLost += losses;
|
||||
if (this.logging.blackops) {
|
||||
|
Loading…
Reference in New Issue
Block a user