BUGFIX: Correct BN10 Sleeve starting Shock (#1285)

This commit is contained in:
TheAimMan
2024-05-17 16:31:40 -04:00
committed by GitHub
parent 36e3dd73ac
commit 8deb907b89

View File

@ -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);
}
}