mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-20 16:22:56 +02:00
BUGFIX: Correct BN10 Sleeve starting Shock (#1285)
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user