diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index a143885119dd6148dd2a2c91f63c0e8bb3427ec2..ef23065a087cbfbeb94a040dcd55919ce86d3954 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -6,9 +6,11 @@ Pregmod
 	-unified cybermod with vanilla
 	-slave assignment links improved
 	-facility transfer tab added to facility assignment
+	-added a drug to force erections
 	-added birth tracking tattoo
 	-breast implants now impact milk production based on % implant
 	-many new names added to lacking name pools
+	-restored chem summary to the clinic
 	-fixes
 
 04/17/2019
diff --git a/slave variables documentation - Pregmod.txt b/slave variables documentation - Pregmod.txt
index d0b72382bff1994a18167ffb4787ba3f16fddea6..faee542935c8facd9df072af85cb6b606466b174 100644
--- a/slave variables documentation - Pregmod.txt	
+++ b/slave variables documentation - Pregmod.txt	
@@ -2556,6 +2556,7 @@ drugs:
 "butt redistributors"
 "sag-B-gone"
 "growth stimulants"
+"priapism agents"
 
 aphrodisiacs:
 
diff --git a/src/SpecialForce/SpecialForce.js b/src/SpecialForce/SpecialForce.js
index bf456619ec790bb3c242d750ea5c590359011107..a3cd95150d1605548324e67285df3d99f4c95682 100644
--- a/src/SpecialForce/SpecialForce.js
+++ b/src/SpecialForce/SpecialForce.js
@@ -233,6 +233,7 @@ App.SF.BC = function() {
 		if (V.SF.FS === undefined) V.SF.FS = {Tension:-1};
 	}
 	InitClean(); MainClean(); ColonelClean(); TradeShowClean(); UnitsClean();
+	if (V.week < 72 && V.SF.Active !== -1) V.SF.Active = -1;
 };
 
 App.SF.fsIntegration = function(input = 'Menu', textDisplay = 100, text = `\n`) {
diff --git a/src/js/slaveStatsChecker.js b/src/js/slaveStatsChecker.js
index 262a14851168907cf54903e5b2f83888b79e07ba..cbc92b028c7098e58b1dcd56816215051623bfec 100644
--- a/src/js/slaveStatsChecker.js
+++ b/src/js/slaveStatsChecker.js
@@ -378,10 +378,24 @@ window.isFertile = function(slave) {
 window.canAchieveErection = function(slave) {
 	if (!slave) {
 		return null;
-	} else if (slave.dick < 7 && slave.dick > 0 && slave.drugs !== "hormone blockers" && (slave.balls > 0 ? slave.hormoneBalance < 100 : slave.hormoneBalance <= -100) && slave.ballType !== "sterile") {
+	} else if (slave.dick <= 0) {
+		return false;
+	} else if (slave.dick < 11 && slave.drugs === "priapism agents") {
+		return true;
+	} else if (slave.dick > 7) {
+		return false;
+	} else if (slave.aphrodisiacs > 1 || (slave.inflationType == "aphrodisiac" && slave.inflation >= 2)) {
+		return true;
+	} else if (slave.balls > 0 ? slave.hormoneBalance < 100 : slave.hormoneBalance <= -100) {
+		return false;
+	} else if (slave.ballType !== "sterile") {
+		return false;
+	} else if (slave.aphrodisiacs > 0 || slave.inflationType == "aphrodisiac") {
 		return true;
+	} else if (slave.drugs === "hormone blockers") { 
+		return false;
 	}
-	return false;
+	return true;
 };
 
 /**
diff --git a/src/js/slaveSummaryWidgets.js b/src/js/slaveSummaryWidgets.js
index 295ccb94dc41758a5310a1791742c12a74c3e0f1..4a9e4264ba4f5651fe3986ae4f8da5e1435589e7 100644
--- a/src/js/slaveSummaryWidgets.js
+++ b/src/js/slaveSummaryWidgets.js
@@ -770,6 +770,9 @@ window.SlaveSummaryUncached = (function() {
 			r += `<strong><span class="green">H${V.summaryStats? `[${slave.health}]` : ''}</span></strong>`;
 		}
 		r += " ";
+		if (passage() === "Clinic" && V.clinicUpgradeScanner && slave.chem > 15) {
+			r += `<strong><span class="cyan">C${Math.ceil(slave.chem/10)}</span></strong> `;
+		}
 	}
 
 	/**
@@ -792,6 +795,9 @@ window.SlaveSummaryUncached = (function() {
 			r += `<span class="green">Unnaturally healthy${V.summaryStats? `[${slave.health}]` : ''}.</span>`;
 		}
 		r += " ";
+		if (passage() === "Clinic" && V.clinicUpgradeScanner && slave.chem > 15) {
+			r += `<strong><span class="cyan">Carcinogen buildup: ${Math.ceil(slave.chem/10)}</span>.</strong> `;
+		}
 	}
 
 	/**
@@ -897,7 +903,10 @@ window.SlaveSummaryUncached = (function() {
 				r += `<strong>Dr:AntiSag</strong>`;
 				break;
 			case "growth stimulants":
-				r += `<strong>Dr:groStim</strong>`;
+				r += `<strong>Dr:GroStim</strong>`;
+				break;
+			case "priapism agents":
+				r += `<strong>Dr:Erection</strong>`;
 				break;
 		}
 		r += `</span> `;
diff --git a/src/uncategorized/brothelReport.tw b/src/uncategorized/brothelReport.tw
index 94a98d25abf0d653d7f9f96e9d9aa786508c6844..7728d5c5260a0ae31fd6741efb691693dae1e86e 100644
--- a/src/uncategorized/brothelReport.tw
+++ b/src/uncategorized/brothelReport.tw
@@ -194,14 +194,14 @@
 		<</if>>
 		<<if (_DL+$slavesGettingHelp < 5)>>
 			<<set $i = _FLs>> /* apply following SA passages to facility leader */
+			<<setLocalPronouns $slaves[$i]>>
 			<<if $showEWD != 0>>
 				<br>&nbsp;&nbsp;&nbsp;&nbsp;$He <<= saWhore($slaves[$i])>>
 			<<else>>
 				<<run saWhore($slaves[$i])>>
 			<</if>>
-			<<set _seed = $cash-_oldCash, _cashX += Math.trunc(0.5*_seed), _seed = Math.trunc(1.5*_seed), _profits += _seed>>
-			<<run cashX(_cashX, "whore", $Madam)>>
-			<br>&nbsp;&nbsp;&nbsp;&nbsp;Since $he doesn't have enough whores to manage to keep $him busy, $he sees $beauty customers $himself (<<print Math.trunc($beauty/7)>> a day), earning you @@.yellowgreen;<<print cashFormat(_seed)>>.@@ $He can charge more for $his time, since many citizens find it erotic to fuck the Madam.
+			<br>&nbsp;&nbsp;&nbsp;&nbsp;$He whores $himself because $he doesn't have enough whores to manage to keep $him busy, and makes @@.yellowgreen;<<print cashFormat($Madam.lastWeeksCashIncome)>>@@. $He can charge more for $his time, since many citizens find it erotic to fuck the Madam.
+			<<set _profits += $cash-_oldCash, _oldCash = $cash>>
 		<</if>>
 	<</if>>
 	<<if (_DL > 0)>><br><br><</if>>
diff --git a/src/uncategorized/clubReport.tw b/src/uncategorized/clubReport.tw
index ba064f2a268b80c4532e841ecd0921e2350ca688..5a6a7a30b7c26bf2fea7a0498a9401b95e16b930 100644
--- a/src/uncategorized/clubReport.tw
+++ b/src/uncategorized/clubReport.tw
@@ -102,6 +102,7 @@
 			<<else>>
 				<<run saServeThePublic($slaves[$i])>>
 			<</if>>
+			/* The "extra" that she makes.  Move into saServeThePublic to match saWhore, someday. */
 			<<run repX(Math.trunc(($beauty*$FResult)*(1+(0.003*$slaves[_FLs].skill.entertainment))*0.1*0.5), "club", $slaves[_FLs])>>
 		<</if>>
 		<<run repX(Math.trunc(($slaves[_FLs].sexAmount*$slaves[_FLs].sexQuality)*(1+(0.003*$slaves[_FLs].skill.entertainment))*0.1*0.5), "club", $slaves[_FLs])>>
diff --git a/src/uncategorized/longSlaveDescription.tw b/src/uncategorized/longSlaveDescription.tw
index 4361dd9e2448d484c2e2ccde50ccf55241f1193a..4ff4f2ae00bd677a2b24c64e2adec6d08e116daa 100644
--- a/src/uncategorized/longSlaveDescription.tw
+++ b/src/uncategorized/longSlaveDescription.tw
@@ -2216,6 +2216,20 @@ $He is
 <<if $activeSlave.fuckdoll == 0>>
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<switch $activeSlave.drugs>>
+	<<case "priapism agents">>
+		<<if $activeSlave.dick > 0 && $activeSlave.dick <= 10>>
+			<<if $activeSlave.chastityPenis == 1>>
+				$He can do nothing but writhe in agony at the pain of $his priapismic erection trapped in $his chastity cage.
+			<<else>>
+				<<if ($activeSlave.dick > 8)>>
+					$His oversized dick is painfulled engorged to a state of semi-hardness due to the priapism agents.
+				<<elseif ($activeSlave.dick > 6)>>
+					$He sports a painful, oversized erection due to the priapism agents.
+				<<else>>
+					$He sports a throbbing, painful erection due to the priapism agents.
+				<</if>>
+			<</if>>
+		<</if>>
 	<<case "super fertility drugs">>
 		<<if isFertile($activeSlave) && $activeSlave.preg == 0>>
 			$He is constantly dripping sexual fluids and $his breasts and belly are slightly swollen. The super fertility drugs have $him ready to be impregnated.
diff --git a/src/uncategorized/saDrugs.tw b/src/uncategorized/saDrugs.tw
index 13010bff4e47da0ff01f7714b8d7bb12efe0856c..861724084798bc2c6f7a4e8594c5df6357c2c5f8 100644
--- a/src/uncategorized/saDrugs.tw
+++ b/src/uncategorized/saDrugs.tw
@@ -13,6 +13,26 @@
 
 <<case "hormone enhancers">>
 	$His drug regime prepares $his body to accept hormonal effects.
+	
+<<case "priapism agents">>
+	<<if $slaves[$i].dick == 0>>
+		Since $he lacks a dick, it is pointless to try and keep it hard. @@.yellow;$His drug regimen has been ended.@@
+		<<set $slaves[$i].drugs = "no drugs">>
+	<<elseif $slaves[$i].chastityPenis == 1>>
+		A tight cage around a dick forced hard are a bad mix so @@.yellow;$his drug regimen has been ended.@@
+	<<elseif $slaves[$i].health <= -50>>
+		$He is too unwell to risk further health complications from priapism. @@.yellow;$His drug regimen has been ended.@@
+	<<elseif $slaves[$i].dick > 10>>
+		$His dick is so enormous that attempts to force an erection would kill $him. @@.yellow;$His drug regimen has been mercifully ended.@@
+		<<set $slaves[$i].drugs = "no drugs">>
+	<<else>>
+		$His drug regime keeps $his dick @@.red;painfully erect.@@
+		<<set $slaves[$i].health -= 5>>
+		<<if $slaves[$i].dick >= 7>>
+			The amount of blood needed to keep $his oversized cock hard has @@.red;severe effects on $his health!@@
+			<<set $slaves[$i].health -= $slaves[$i].dick*5>>
+		<</if>>
+	<</if>>
 
 <<case "psychosuppressants">>
 	<<if ($slaves[$i].fetish != "mindbroken")>>
diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw
index a75dbe6ca523a467ab8e0e35705e2f507553aeef..43b1312593def8ed159a165ebe2a7b0d71a86f5e 100644
--- a/src/uncategorized/slaveInteract.tw
+++ b/src/uncategorized/slaveInteract.tw
@@ -1113,6 +1113,9 @@
 				| Penis reducers
 			<</if>>
 		<</if>>
+		<<if $activeSlave.dick > 0 && $activeSlave.dick < 11 && !canAchieveErection($activeSlave) && $activeSlave.chastityPenis != 1>>
+			| <<link "Erectile dysfunction circumvention">><<set $activeSlave.drugs = "priapism agents">><<SlaveInteractDrugs>><</link>>
+		<</if>>
 		<<if ($activeSlave.balls > 0)>>
 			| <<link "Testicle enhancement">><<set $activeSlave.drugs = "testicle enhancement">><<SlaveInteractDrugs>><</link>>
 			<<if $arcologies[0].FSAssetExpansionistResearch == 1>>
diff --git a/src/uncategorized/storyCaption.tw b/src/uncategorized/storyCaption.tw
index de12990ecb4163a5f66f0f69480dcdad247a6d90..7a514c85be0f02fb1045d65080c8c89471ba0bc1 100644
--- a/src/uncategorized/storyCaption.tw
+++ b/src/uncategorized/storyCaption.tw
@@ -69,6 +69,9 @@
 		@@.cyan;[Space]@@
 	</span>
 	<br><br>
+<<elseif $nextButton == " ">>
+	<span id="nextButton"></span>
+	<br><br>
 <</if>>
 
 <<if $newModelUI == 0>>
diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw
index 752b9f670d5584a623661b04ee082e21b3395cca..6ec23704dde76b998acbcbcbef637cae9f2273e8 100644
--- a/src/utility/descriptionWidgetsFlesh.tw
+++ b/src/utility/descriptionWidgetsFlesh.tw
@@ -3904,11 +3904,19 @@ $He's got a
 			<<elseif ($activeSlave.dick > 6)>>
 				$He's only half hard despite the drugs ejaculated by the dildo up $his asshole, and $he must feel very faint, since even that requires much of $his blood volume.
 			<<else>>
-				The drugs ejaculated by the dildo up $his asshole keep $his almost permanently hard, only letting $his go soft right after ejaculation.
+				The drugs ejaculated by the dildo up $his asshole keep $his almost permanently hard, only letting $him go soft right after ejaculation.
 			<</if>>
 			As you watch, the machine detects that $his balls are ready for emptying. It reams $his ass until semen whitens the transparent tubing coming off the head of the receptacle covering $his dick.
 		<<elseif ($activeSlave.chastityPenis == 1)>>
 			<<dickAccessoryDescription>>
+		<<elseif $activeSlave.drugs == "priapism agents">>
+			<<if ($activeSlave.dick > 8)>>
+				$He's painfully hard, despite the size of $his cock, and on the brink of losing consciousness, since a dangerous amount of $his blood volume is required to even get it to this point.
+			<<elseif ($activeSlave.dick > 6)>>
+				$He's painfully erect, or as erect that a cock of that size could be, and $he must feel very faint, since even that requires much of $his blood volume.
+			<<else>>
+				$He's painfully erect.
+			<</if>>
 		<<elseif ($activeSlave.dick > 8)>>
 			$He's too huge for $his cardiovascular system to create even the beginnings of an erection. $His cock is a soft, sensitive monolith<<if ($activeSlave.dick*6) > $activeSlave.height>> bigger than $his body<<elseif ($activeSlave.dick*6) > ($activeSlave.height/2)>> the size of one of $his legs<<else>> the size of one of $his arms<</if>>,
 			<<if $activeSlave.amp == 1 && (($activeSlave.dick*6) > $activeSlave.height)>>
@@ -3928,6 +3936,13 @@ $He's got a
 			<<elseif ($activeSlave.prostate > 1)>>
 				$He's got a string of precum dangling from the tip of $his cock; $his artificially hyperactive prostate keeps $him that way.
 			<</if>>
+		<<elseif ($activeSlave.aphrodisiacs > 1) || ($activeSlave.inflationType == "aphrodisiac" && $activeSlave.inflation >= 2)>>
+			The aphrodisiacs have $his cock painfully hard<<if $activeSlave.drugs == "hormone blockers" || !($activeSlave.balls > 0 ? $activeSlave.hormoneBalance < 100 : $activeSlave.hormoneBalance <= -100) || $activeSlave.ballType == "sterile">>, despite $his usual inability to achieve erection<</if>>.
+			<<if ($activeSlave.prostate > 2)>>
+				The area above $his crotch has a slight swell to it from $his prostate implant. A constant dribble of precum drips from the tip of $his cock; $his artificially hyperactive prostate keeps $him that way.
+			<<elseif ($activeSlave.prostate > 1)>>
+				$He's got a string of precum dangling from the tip of $his cock; $his artificially hyperactive prostate keeps $him that way.
+			<</if>>
 		<<elseif ($activeSlave.balls > 0) && $activeSlave.ballType == "sterile">>
 			Since $he has been chemically castrated, $his cock is soft.
 			<<if ($activeSlave.energy > 95)>>
@@ -3944,7 +3959,7 @@ $He's got a
 			<<if ($activeSlave.energy > 95)>>
 				$He's such a nympho that despite this, $his limp member is tipped by a drop of precum.
 			<</if>>
-		<<elseif ($activeSlave.dick > 1) && ($activeSlave.hormoneBalance >= 100)>>
+		<<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100)>>
 			Since $his body is flooded with female hormones, $his cock is soft.
 			<<if ($activeSlave.devotion > 75)>>
 				Despite this, $he's so devoted to you that being near you has $his horny. $His limp member is tipped by a drop of precum.
@@ -3960,7 +3975,7 @@ $He's got a
 			<</if>>
 		<<elseif ($activeSlave.dick > 1)>>
 			<<if ($activeSlave.aphrodisiacs > 0) || $activeSlave.inflationType == "aphrodisiac">>
-				The aphrodisiacs have $his cock <<if ($activeSlave.aphrodisiacs > 1) || ($activeSlave.inflationType == "aphrodisiac" && $activeSlave.inflation >= 2)>>painfully <</if>>hard<<if !canAchieveErection($activeSlave)>>, despite $his usual inability to achieve erection<</if>>.
+				The aphrodisiacs have $his cock hard<<if !canAchieveErection($activeSlave)>>, despite $his usual inability to achieve erection<</if>>.
 				<<if ($activeSlave.prostate > 2)>>
 					The area above $his crotch has a slight swell to it from $his prostate implant. A constant dribble of precum drips from the tip of $his cock; $his artificially hyperactive prostate keeps $him that way.
 				<<elseif ($activeSlave.prostate > 1)>>
@@ -4009,9 +4024,14 @@ $He's got a
 				<<elseif ($activeSlave.prostate > 1)>>
 					$He's got a string of precum dangling from the tip of $his cock; $his artificially hyperactive prostate keeps $him that way.
 				<</if>>
-			<<elseif ($activeSlave.dick > 1)>>
+			<<else>>
 				Judging by the softness of $his dick, $he doesn't find $his situation arousing.
 			<</if>>
+		<<else>>
+			You can't tell if $he is hard or soft at a glance, not that there is much of a size difference between it.
+			<<if ($activeSlave.prostate > 2)>>
+				The area above $his crotch has a slight swell to it from $his prostate implant; a swell that makes $his cock look even smaller by comparison.
+			<</if>>
 		<</if>>
 
 		<<if $activeSlave.balls > 0 && $activeSlave.vasectomy == 1>>
@@ -4221,7 +4241,7 @@ $He's got a
 		<<if ($activeSlave.foreskin > 0)>>
 			<<if ($activeSlave.foreskin - $activeSlave.dick < -1)>>
 				$His cockhead is much too large for $his foreskin, probably as a result of recent penis growth it hasn't had time to stretch to accommodate yet.
-				<<if canAchieveErection($activeSlave) && (($activeSlave.devotion > 20) || ($activeSlave.aphrodisiacs > 0) || ($saleDescription == 1 && $gingering == "vasodilator") || ($activeSlave.inflationType == "aphrodisiac"))>>
+				<<if canAchieveErection($activeSlave) && (($activeSlave.devotion > 20) || ($activeSlave.aphrodisiacs > 0) || ($saleDescription == 1 && $gingering == "vasodilator") || ($activeSlave.inflationType == "aphrodisiac") || ($activeSlave.drugs == "priapism agents"))>>
 					The bit of erect dickhead visible at the tip of the uncomfortably stretched skin is an angry color from being squeezed so hard.
 				<<elseif canAchieveErection($activeSlave)>>
 					$He isn't erect right now, but getting a hard-on will probably be very uncomfortable for $him.
@@ -4230,7 +4250,7 @@ $He's got a
 				<</if>>
 			<<elseif ($activeSlave.foreskin - $activeSlave.dick < 0)>>
 				$His foreskin is stretched by $his dickhead, probably as a result of recent penis growth it hasn't had time to get used to yet.
-				<<if canAchieveErection($activeSlave) && (($activeSlave.devotion > 20) || ($activeSlave.aphrodisiacs > 0) || ($saleDescription == 1 && $gingering == "vasodilator") || ($activeSlave.inflationType == "aphrodisiac"))>>
+				<<if canAchieveErection($activeSlave) && (($activeSlave.devotion > 20) || ($activeSlave.aphrodisiacs > 0) || ($saleDescription == 1 && $gingering == "vasodilator") || ($activeSlave.inflationType == "aphrodisiac") || ($activeSlave.drugs == "priapism agents"))>>
 					$His erection has stretched the skin there taut.
 				<<elseif canAchieveErection($activeSlave)>>
 					$He isn't erect right now, but getting a hard-on will probably be a bit uncomfortable for $him.
@@ -4239,7 +4259,7 @@ $He's got a
 				<</if>>
 			<<elseif ($activeSlave.foreskin - $activeSlave.dick > 0)>>
 				$His foreskin seems too large for $his dick, probably as a result of recent penis shrinkage.
-				<<if canAchieveErection($activeSlave) && (($activeSlave.devotion > 20) || ($activeSlave.aphrodisiacs > 0) || ($saleDescription == 1 && $gingering == "vasodilator") || ($activeSlave.inflationType == "aphrodisiac"))>>
+				<<if canAchieveErection($activeSlave) && (($activeSlave.devotion > 20) || ($activeSlave.aphrodisiacs > 0) || ($saleDescription == 1 && $gingering == "vasodilator") || ($activeSlave.inflationType == "aphrodisiac") || ($activeSlave.drugs == "priapism agents"))>>
 					$His erection cannot fully retract it, though it's loose enough that this doesn't look uncomfortable.
 				<<elseif canAchieveErection($activeSlave)>>
 					$He isn't erect right now, making the tip of $his dick look shriveled.
@@ -4248,7 +4268,7 @@ $He's got a
 				<</if>>
 			<<elseif ($activeSlave.foreskin - $activeSlave.dick > 1)>>
 				$His foreskin is far too large for $his dick, probably as a result of recent penis shrinkage.
-				<<if canAchieveErection($activeSlave) && (($activeSlave.devotion > 20) || ($activeSlave.aphrodisiacs > 0) || ($saleDescription == 1 && $gingering == "vasodilator") || ($activeSlave.inflationType == "aphrodisiac"))>>
+				<<if canAchieveErection($activeSlave) && (($activeSlave.devotion > 20) || ($activeSlave.aphrodisiacs > 0) || ($saleDescription == 1 && $gingering == "vasodilator") || ($activeSlave.inflationType == "aphrodisiac") || ($activeSlave.drugs == "priapism agents"))>>
 					$His erection cannot retract it at all, though it's loose enough that this doesn't look uncomfortable. Orgasming, though, will likely produce a dribbling mess.
 				<<elseif canAchieveErection($activeSlave)>>
 					$He isn't erect right now, so the excess skin droops lamely off $his cockhead.
@@ -5207,7 +5227,7 @@ $He's got a
 
 <<if $activeSlave.fuckdoll == 0>>
 	<<if ($activeSlave.releaseRules == "permissive") || $activeSlave.releaseRules == "masturbation">>
-		<<if ($activeSlave.aphrodisiacs > 0) || ($activeSlave.inflationType == "aphrodisiac")>>
+		<<if (($activeSlave.aphrodisiacs > 0) || ($activeSlave.inflationType == "aphrodisiac")) && $activeSlave.drugs != "priapism agents">>
 			<<if ($activeSlave.aphrodisiacs > 1) || ($activeSlave.inflationType == "aphrodisiac" && $activeSlave.inflation > 1)>>
 				<<if ($activeSlave.dick != 0) && ($activeSlave.hormoneBalance >= 100) && ($activeSlave.amp == 1)>>
 					The extreme dose of aphrodisiacs combined with the hormones that keep $him flaccid have $him in a state of extreme sexual frustration; $he's <<if (($activeSlave.fetish == "buttslut") || (($activeSlave.sexualFlaw != "hates anal") && ($activeSlave.counter.anal > 9)))>>unconsciously humping $his ass against whatever's next to $him for anal stimulation and<</if>>humping $his dick against whatever $he can manage to mount without limbs.<<if $activeSlave.inflationType == "aphrodisiac">> $His efforts force $his distended middle to jiggle around, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more.<</if>>
diff --git a/src/utility/miscWidgets.tw b/src/utility/miscWidgets.tw
index a16d6eac94fae18a8984b61523138b7c1f182b97..d3afda8bd5d4545a8b5eea8e69eb49ced52aed56 100644
--- a/src/utility/miscWidgets.tw
+++ b/src/utility/miscWidgets.tw
@@ -238,6 +238,9 @@
 				| Penis reducers
 			<</if>>
 		<</if>>
+		<<if $activeSlave.dick > 0 && $activeSlave.dick < 11 && !canAchieveErection($activeSlave) && $activeSlave.chastityPenis != 1>>
+			| <<link "Erectile dysfunction circumvention">><<set $activeSlave.drugs = "priapism agents">><<SlaveInteractDrugs>><</link>>
+		<</if>>
 		<<if ($activeSlave.balls > 0)>>
 			| <<link "Testicle enhancement">><<set $activeSlave.drugs = "testicle enhancement">><<SlaveInteractDrugs>><</link>>
 			<<if $arcologies[0].FSAssetExpansionistResearch == 1>>