diff --git a/src/endWeek/player/prDrugs.js b/src/endWeek/player/prDrugs.js
index d99905748ea71f66e421773ac8d5c60ef0d6884a..0b810405d5db945d30d4ccf11021759153c57009 100644
--- a/src/endWeek/player/prDrugs.js
+++ b/src/endWeek/player/prDrugs.js
@@ -795,7 +795,7 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 				r.push(`You <span class="change positive">directly inject yourself with growth stimulants</span> several times a day in an effort to increase your height.`);
 				// genetic quirks
 				if (PC.geneticQuirks.dwarfism === 2 && PC.geneticQuirks.gigantism === 2) {
-					growth += (0.1 * (random(-5, 5)));
+					growth += (0.1 * random(-5, 5));
 					if (V.geneticMappingUpgrade >= 1) {
 						r.push(`Your combination of genetic factors for gigantism and dwarfism causes the effectiveness of the treatment to fluctuate erratically.`);
 					}
diff --git a/src/endWeek/saDrugs.js b/src/endWeek/saDrugs.js
index 8bb06e138c56c276a85bf74d4a53770c55384191..192ad70dec2447f333e6ffbe0556b769c38639e9 100644
--- a/src/endWeek/saDrugs.js
+++ b/src/endWeek/saDrugs.js
@@ -760,7 +760,7 @@ App.SlaveAssignment.drugs = function saDrugs(slave) {
 				r += `${He} receives frequent <span class="lime">injections of growth stimulants.</span>`;
 				// genetic quirks
 				if (slave.geneticQuirks.dwarfism === 2 && slave.geneticQuirks.gigantism === 2) {
-					growth += (0.1 * (random(-5, 5)));
+					growth += (0.1 * random(-5, 5));
 					if (V.geneticMappingUpgrade >= 1) {
 						r += ` ${His} combination of genetic factors for gigantism and dwarfism causes the effectiveness of the treatment to fluctuate erratically.`;
 					}