mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-25 02:32:55 +02:00
MISC: Do not round return value of getBonusTime APIs (#1961)
This commit is contained in:
@@ -331,7 +331,7 @@ export function NetscriptGang(): InternalAPI<IGang> {
|
||||
},
|
||||
getBonusTime: (ctx) => () => {
|
||||
const gang = getGang(ctx);
|
||||
return Math.round(gang.storedCycles / 5) * 1000;
|
||||
return gang.storedCycles * 200;
|
||||
},
|
||||
nextUpdate: (ctx) => () => {
|
||||
getGang(ctx);
|
||||
|
||||
Reference in New Issue
Block a user