diff --git a/src/Augmentation/AugmentationHelpers.jsx b/src/Augmentation/AugmentationHelpers.jsx index a75541f0b..d125d4a1d 100644 --- a/src/Augmentation/AugmentationHelpers.jsx +++ b/src/Augmentation/AugmentationHelpers.jsx @@ -77,9 +77,12 @@ function getRandomBonus() { ] - let randomNumber = (new WHRNG(Math.floor(Player.lastUpdate/360))); + let randomNumber = (new WHRNG(Math.floor(Player.lastUpdate/36))); + + for(let i = 0; i < 3; i++){ + randomNumber.step(); + } - randomNumber.step(); return (bonuses[Math.floor(bonuses.length * randomNumber.random())]); }