mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-18 05:33:54 +01:00
BUGFIX: Correct BN10 Sleeve starting Shock (#1285)
This commit is contained in:
parent
36e3dd73ac
commit
8deb907b89
@ -139,7 +139,7 @@ export function prestigeSourceFile(this: PlayerObject): void {
|
||||
|
||||
if (this.bitNodeN === 10) {
|
||||
for (let i = 0; i < this.sleeves.length; i++) {
|
||||
this.sleeves[i].shock = Math.max(25, this.sleeves[i].shock);
|
||||
this.sleeves[i].shock = Math.min(25, this.sleeves[i].shock);
|
||||
this.sleeves[i].sync = Math.max(25, this.sleeves[i].sync);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user