mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-05-15 20:10:08 +02:00
MISC: Do not round return value of getBonusTime APIs (#1961)
This commit is contained in:
@@ -785,7 +785,7 @@ export function NetscriptCorporation(): InternalAPI<NSCorporation> {
|
||||
},
|
||||
getBonusTime: (ctx) => () => {
|
||||
checkAccess(ctx);
|
||||
return Math.round(getCorporation().storedCycles / 5) * 1000;
|
||||
return getCorporation().storedCycles * 200;
|
||||
},
|
||||
nextUpdate: (ctx) => () => {
|
||||
checkAccess(ctx);
|
||||
|
||||
Reference in New Issue
Block a user