BITNODE: IPvGO territory control strategy game (#934)

This commit is contained in:
Michael Ficocelli
2023-12-26 11:45:27 -05:00
committed by GitHub
parent c6141f2adf
commit 7ef12a0323
68 changed files with 7833 additions and 17 deletions
+3 -1
View File
@@ -69,7 +69,9 @@ export function calculateHackingTime(server: IServer, person: IPerson): number {
const hackTimeMultiplier = 5;
const hackingTime =
(hackTimeMultiplier * skillFactor) /
(person.mults.hacking_speed * calculateIntelligenceBonus(person.skills.intelligence, 1));
(person.mults.hacking_speed *
currentNodeMults.HackingSpeedMultiplier *
calculateIntelligenceBonus(person.skills.intelligence, 1));
return hackingTime;
}