From aef0cc815e2391bd68ea49c7840ec4509f5af403 Mon Sep 17 00:00:00 2001 From: Tesseract1234567890 Date: Thu, 3 Jun 2021 11:12:28 -0400 Subject: [PATCH] added rng to circ. modulator --- src/Augmentation/AugmentationHelpers.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Augmentation/AugmentationHelpers.jsx b/src/Augmentation/AugmentationHelpers.jsx index b8b1e5576..2c2b80cf5 100644 --- a/src/Augmentation/AugmentationHelpers.jsx +++ b/src/Augmentation/AugmentationHelpers.jsx @@ -18,6 +18,8 @@ import { dialogBoxCreate } from "../../utils/DialogBox"; import { clearObject } from "../../utils/helpers/clearObject"; import { Money } from "../ui/React/Money"; +import { WHRNG } from "../Casino/RNG"; + import React from "react"; import ReactDOM from "react-dom"; @@ -41,7 +43,7 @@ function initAugmentations() { name:AugmentationNames.CircadianRhythm, moneyCost: 0, repCost:0, info:"An injection which improves your perception by a variable amount.

" + "This augmentation increases the player's hacking skill by a variable amount.", - hacking_mult: 111.08, + hacking_mult: (1 + new WHRNG((new Date()).getMinutes() * 60 + (new Date()).getSeconds()).random()), }); CircadianRhythm.addToFactions(["VitaLife"]); if (augmentationExists(AugmentationNames.CircadianRhythm)) {