mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-03-08 11:29:19 +01:00
style: 🎨 fix - forgot to run format first
This commit is contained in:
@ -76,7 +76,9 @@ export class Server extends BaseServer {
|
||||
|
||||
//Hack Difficulty is synonymous with server security. Base Difficulty = Starting difficulty
|
||||
this.hackDifficulty =
|
||||
params.hackDifficulty != null ? Math.min(params.hackDifficulty * BitNodeMultipliers.ServerStartingSecurity, 100) : 1;
|
||||
params.hackDifficulty != null
|
||||
? Math.min(params.hackDifficulty * BitNodeMultipliers.ServerStartingSecurity, 100)
|
||||
: 1;
|
||||
this.baseDifficulty = this.hackDifficulty;
|
||||
this.minDifficulty = Math.max(1, Math.round(this.hackDifficulty / 3));
|
||||
this.serverGrowth = params.serverGrowth != null ? params.serverGrowth : 1; //Integer from 0 to 100. Affects money increase from grow()
|
||||
|
Reference in New Issue
Block a user