Made getBonusTime return miliseconds

This commit is contained in:
Thomas B
2022-03-01 12:39:35 -05:00
committed by GitHub
parent fb4812b530
commit 9636fda082

View File

@ -365,7 +365,7 @@ export function NetscriptBladeburner(
checkBladeburnerAccess("getBonusTime");
const bladeburner = player.bladeburner;
if (bladeburner === null) throw new Error("Should not be called without Bladeburner");
return Math.round(bladeburner.storedCycles / 5);
return (Math.round(bladeburner.storedCycles / 5))*1000;
},
};
}