Merge pull request #2695 from SagePtr/patch-1

Remove console spamming from CalculateShareMult
This commit is contained in:
hydroflame
2022-01-19 01:53:15 -05:00
committed by GitHub

View File

@ -8,6 +8,5 @@ export function StartSharing(threads: number): () => void {
}
export function CalculateShareMult(): number {
console.log(`${sharePower} => ${CSM(sharePower)}`);
return CSM(sharePower);
}