mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-27 01:53:48 +01:00
Fixed RNG generation for augment
This commit is contained in:
parent
23cefed8d4
commit
c47990ef56
@ -43,9 +43,9 @@ function initAugmentations() {
|
||||
name:AugmentationNames.CircadianRhythm, moneyCost: 0, repCost:0,
|
||||
info:"An injection which improves your perception by a variable amount.<br><br>" +
|
||||
"This augmentation increases the player's hacking skill by a variable amount.",
|
||||
hacking_mult: (1 + new WHRNG(Player.lastUpdate).random()),
|
||||
hacking_mult: (0.9 + 1.1 * (new WHRNG(Player.lastUpdate).random())),
|
||||
});
|
||||
CircadianRhythm.addToFactions(["VitaLife"]);
|
||||
CircadianRhythm.addToFactions(["Illuminati"]);
|
||||
if (augmentationExists(AugmentationNames.CircadianRhythm)) {
|
||||
delete Augmentations[AugmentationNames.CircadianRhythm];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user