From 8259c1a5b96c8e2f3e1fb2d5eb98191e3e966e9a Mon Sep 17 00:00:00 2001 From: Tesseract1234567890 Date: Thu, 3 Jun 2021 16:54:43 -0400 Subject: [PATCH] Reset RNG to reload every hour --- src/Augmentation/AugmentationHelpers.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Augmentation/AugmentationHelpers.jsx b/src/Augmentation/AugmentationHelpers.jsx index 489d1ac90..784962004 100644 --- a/src/Augmentation/AugmentationHelpers.jsx +++ b/src/Augmentation/AugmentationHelpers.jsx @@ -77,7 +77,7 @@ function getRandomBonus() { ] - let randomNumber = (new WHRNG(Math.floor(Player.lastUpdate/36))); + let randomNumber = (new WHRNG(Math.floor(Player.lastUpdate/3600000))); for(let i = 0; i < 3; i++){ randomNumber.step();