Merge pull request #2814 from SagePtr/patch-1

Add rounding to getPurchaseServerCost
This commit is contained in:
hydroflame 2022-01-26 00:30:45 -05:00 committed by GitHub
commit 5dd1c0224a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -30,7 +30,7 @@ export function getPurchaseServerCost(ram: number): number {
const upg = Math.max(0, Math.log(sanitizedRam) / Math.log(2) - 6);
return (
return Math.round(
sanitizedRam *
CONSTANTS.BaseCostFor1GBOfRamServer *
BitNodeMultipliers.PurchasedServerCost *