mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-26 11:10:58 +02:00
Most console.log have been changed to console.warn or removed if they were debug
This commit is contained in:
@@ -74,7 +74,7 @@ export function processSingleServerGrowth(server: Server, numCycles: number, p:
|
||||
//Apply serverGrowth for the calculated number of growth cycles
|
||||
let serverGrowth = Math.pow(adjGrowthRate, numServerGrowthCyclesAdjusted * p.hacking_grow_mult);
|
||||
if (serverGrowth < 1) {
|
||||
console.log("WARN: serverGrowth calculated to be less than 1");
|
||||
console.warn("serverGrowth calculated to be less than 1");
|
||||
serverGrowth = 1;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user