diff --git a/src/interaction/slaveInteract.js b/src/interaction/slaveInteract.js
index 9f85afe4360d12a180e253f5441c8cc24e6ecc75..296d2f00a41f178c71992126e02366e054185738 100644
--- a/src/interaction/slaveInteract.js
+++ b/src/interaction/slaveInteract.js
@@ -166,6 +166,13 @@ App.UI.SlaveInteract.assignmentBlock = function(blockId, slave) {
 		assign.textContent = `${slave.assignment}. `;
 	}
 	title.appendChild(assign);
+	if (V.assignmentRecords[slave.ID] && V.assignmentRecords[slave.ID] !== slave.assignment) {
+		title.append(`Previously: `);
+		assign = document.createElement('span');
+		assign.style.fontWeight = "bold";
+		assign.textContent = `${V.assignmentRecords[slave.ID]}. `;
+		title.appendChild(assign);
+	}
 	if (slave.assignment === "be a subordinate slave") {
 		const target = getSlave(slave.subTarget);
 		let linkText = ``;
@@ -174,19 +181,13 @@ App.UI.SlaveInteract.assignmentBlock = function(blockId, slave) {
 			linkText = `Change`;
 		} else if (slave.subTarget === -1) {
 			title.appendChild(document.createTextNode(`Serving as a Stud. `));
-			linkText = `Change role `;
+			linkText = `Change role`;
 		} else {
 			title.appendChild(document.createTextNode(`Serving all your other slaves. `));
 			linkText = `Choose a specific slave to submit to`;
 		}
 		title.appendChild(App.UI.DOM.passageLink(linkText, "Subordinate Targeting", () => { V.returnTo = "Slave Interact"; }));
-	}
-	if (V.assignmentRecords[slave.ID] && V.assignmentRecords[slave.ID] !== slave.assignment) {
-		title.append(`Previously: `);
-		assign = document.createElement('span');
-		assign.style.fontWeight = "bold";
-		assign.textContent = `${V.assignmentRecords[slave.ID]}. `;
-		title.appendChild(assign);
+		title.append(separator);
 	}
 	if (slave.assignment !== "choose her own job") {
 		title.appendChild(
diff --git a/src/npc/interaction/passage/fSlaveImpreg.tw b/src/npc/interaction/passage/fSlaveImpreg.tw
index 08e241790ed1d5501beb77c9198aa5397451c1ba..9e2ec702d14e8a7d3f3a60af906376c4bdb41bf3 100644
--- a/src/npc/interaction/passage/fSlaveImpreg.tw
+++ b/src/npc/interaction/passage/fSlaveImpreg.tw
@@ -7,21 +7,23 @@
 	<<= getSlave($AS).slaveName>> is fertile; now you must select a slave with both a penis and potent testicles.
 </p>
 
-<p>
-	__Select an eligible slave to serve as the semen donatrix:__
-</p>
+<h3>Select an eligible slave to serve as the semen donatrix</h3>
 
 <<set _eligibles = $slaves.filter((s) => (s.ID != getSlave($AS).ID) && canImpreg(getSlave($AS), s))>>
 <<for _i = 0; _i < _eligibles.length; _i++>>
 	<<set _name = SlaveFullName(_eligibles[_i])>>
-	<br><<print "[[_name|FSlaveImpreg Consummate][$impregnatrix = _eligibles[" + _i + "]]]">>
-	<<if _eligibles[_i].custom.label>> (@@.yellow;''<<print _eligibles[_i].custom.label>>''@@)<</if>>
-	<<if $familyTesting == 1 && totalRelatives(getSlave($AS)) > 0>>
-		<<set _relTerm = relativeTerm(getSlave($AS), _eligibles[_i])>>
-		<<if _relTerm != null>>
-			@@.lightgreen;<<= capFirstChar(_relTerm)>>@@
+	<div>
+		<<print "[[_name|FSlaveImpreg Consummate][$impregnatrix = _eligibles[" + _i + "]]]">>
+		<<if _eligibles[_i].custom.label>>
+			(@@.yellow;''<<print _eligibles[_i].custom.label>>''@@)
 		<</if>>
-	<</if>> /* closes extended family mode */
+		<<if $familyTesting == 1 && totalRelatives(getSlave($AS)) > 0>>
+			<<set _relTerm = relativeTerm(getSlave($AS), _eligibles[_i])>>
+			<<if _relTerm != null>>
+				@@.lightgreen;<<= capFirstChar(_relTerm)>>@@
+			<</if>>
+		<</if>> /* closes extended family mode */
+	</div>
 <</for>>
 <<if (_eligibles.length === 0)>>
 	//You have no slaves capable of inseminating others.//
diff --git a/src/npc/interaction/passage/fSlaveSlaveDick.tw b/src/npc/interaction/passage/fSlaveSlaveDick.tw
index 181de817f8b699e944144409f4ca43d18f2f8ace..d3b066b52b7e7d4d11a00a8d83498b88604a373e 100644
--- a/src/npc/interaction/passage/fSlaveSlaveDick.tw
+++ b/src/npc/interaction/passage/fSlaveSlaveDick.tw
@@ -2,29 +2,31 @@
 
 <<set $nextButton = "Back", $nextLink = "Slave Interact", $slaverapistx = 0>>
 
-//Select a slave that will ride $activeSlave.slaveName.//
+<p class="scene-intro">
+	Select a slave that will ride $activeSlave.slaveName.
+</p>
 
-<br><br>
-
-__Select an eligible slave:__
-
-<br>
+<h2>Select an eligible slave</h2>
 
 <<set _eligibles = $slaves.filter((s) => (s.ID != $activeSlave.ID) && isSlaveAvailable(s) && canDoVaginal(s) && canWalk(s) /* amp-amp scene is not written */)>>
 <<for _i = 0; _i < _eligibles.length; _i++>>
-	<<set _name = SlaveFullName(_eligibles[_i])>>
-	<br><<print "[[_name|FSlaveSlaveDick Consummate][$slaverapistx = _eligibles[" + _i + "]]]">>
-	<<if _eligibles[_i].custom.label>> (@@.yellow;''<<print _eligibles[_i].custom.label>>''@@)<</if>>
-	<<if (canImpreg(_eligibles[_i], $activeSlave))>>
-		@@.green;Fertile@@
-	<</if>>
-	<<if $familyTesting == 1 && totalRelatives($activeSlave) > 0>>
-		<<set _relTerm = relativeTerm($activeSlave, _eligibles[_i])>>
-		<<if _relTerm != null>>
-			@@.lightgreen;<<= capFirstChar(_relTerm)>>@@
+	<div>
+		<<set _name = SlaveFullName(_eligibles[_i])>>
+		<<print "[[_name|FSlaveSlaveDick Consummate][$slaverapistx = _eligibles[" + _i + "]]]">>
+		<<if _eligibles[_i].custom.label>> (@@.yellow;''<<print _eligibles[_i].custom.label>>''@@)<</if>>
+		<<if (canImpreg(_eligibles[_i], $activeSlave))>>
+			@@.green;Fertile@@
 		<</if>>
-	<</if>> /* closes extended family mode */
+		<<if $familyTesting == 1 && totalRelatives($activeSlave) > 0>>
+			<<set _relTerm = relativeTerm($activeSlave, _eligibles[_i])>>
+			<<if _relTerm != null>>
+				@@.lightgreen;<<= capFirstChar(_relTerm)>>@@
+			<</if>>
+		<</if>> /* closes extended family mode */
+	</div>
 <</for>>
 <<if (_eligibles.length === 0)>>
-	<br>//You have no slaves capable of this act.//
+	<div class="note>
+		You have no slaves capable of this act.
+	</div>
 <</if>>
diff --git a/src/npc/interaction/passage/fSlaveSlaveVag.tw b/src/npc/interaction/passage/fSlaveSlaveVag.tw
index 918ddf181b3c761c52aebaf7404b0704cd2f956d..f1337a2cdb67d3c647c3c780931bd96aec4ba34f 100644
--- a/src/npc/interaction/passage/fSlaveSlaveVag.tw
+++ b/src/npc/interaction/passage/fSlaveSlaveVag.tw
@@ -2,29 +2,32 @@
 
 <<set $nextButton = "Back", $nextLink = "Slave Interact", $slaverapistx = 0>>
 
-//Select a slave that will fuck $activeSlave.slaveName.//
+<p class="scene-intro">
+	Select a slave that will fuck $activeSlave.slaveName.
+</p>
 
-<br><br>
+<h2>Select an eligible slave</h2>
 
-__Select an eligible slave:__
-
-<br>
 
 <<set _eligibles = $slaves.filter((s) => (s.ID != $activeSlave.ID) && isSlaveAvailable(s) && (canPenetrate(s) || s.clit >= 4))>>
 <<for _i = 0; _i < _eligibles.length; _i++>>
-	<<set _name = SlaveFullName(_eligibles[_i])>>
-	<br><<print "[[_name|FSlaveSlaveVag Consummate][$slaverapistx = _eligibles[" + _i + "]]]">>
-	<<if _eligibles[_i].custom.label>> (@@.yellow;''<<print _eligibles[_i].custom.label>>''@@)<</if>>
-	<<if (canImpreg($activeSlave, _eligibles[_i]))>>
-		@@.green;Virile@@
-	<</if>>
-	<<if $familyTesting == 1 && totalRelatives($activeSlave) > 0>>
-		<<set _relTerm = relativeTerm($activeSlave, _eligibles[_i])>>
-		<<if _relTerm != null>>
-			@@.lightgreen;<<= capFirstChar(_relTerm)>>@@
+	<div>
+		<<set _name = SlaveFullName(_eligibles[_i])>>
+		<<print "[[_name|FSlaveSlaveVag Consummate][$slaverapistx = _eligibles[" + _i + "]]]">>
+		<<if _eligibles[_i].custom.label>> (@@.yellow;''<<print _eligibles[_i].custom.label>>''@@)<</if>>
+		<<if (canImpreg($activeSlave, _eligibles[_i]))>>
+			@@.green;Virile@@
 		<</if>>
-	<</if>> /* closes extended family mode */
+		<<if $familyTesting == 1 && totalRelatives($activeSlave) > 0>>
+			<<set _relTerm = relativeTerm($activeSlave, _eligibles[_i])>>
+			<<if _relTerm != null>>
+				@@.lightgreen;<<= capFirstChar(_relTerm)>>@@
+			<</if>>
+		<</if>> /* closes extended family mode */
+	</div>
 <</for>>
 <<if (_eligibles.length === 0)>>
-	<br>//You have no slaves capable of this act.//
+	<div class="note">
+		You have no slaves capable of this act.
+	</div>
 <</if>>
diff --git a/src/pregmod/slaveOnSlaveFeedingWorkAround.tw b/src/pregmod/slaveOnSlaveFeedingWorkAround.tw
index 3fd432e7361eb38e669f6d56c04480c9f250d48e..22bc11a99c1258d3fa6c5cf825706a7700e5e67f 100644
--- a/src/pregmod/slaveOnSlaveFeedingWorkAround.tw
+++ b/src/pregmod/slaveOnSlaveFeedingWorkAround.tw
@@ -30,198 +30,255 @@
 	<</if>>
 <</for>>
 
-//$activeSlave.slaveName is prepped to drink $his fill; now you must select a slave capable of producing the required amount of milk or ejaculate.//
+<p class="scene-intro">
+	$activeSlave.slaveName is prepped to drink $his fill; now you must select a slave capable of producing the required amount of milk or ejaculate.
+</p>
 
-<br><br><br>
+<h2>Select an eligible slave to serve as the tap</h2>
 
-__Select an eligible slave to serve as the tap:__
-<br><br>
-__Milk Slaves__
-<br><br>
-__2 Liters__
-<br>
-<<for _i = 0; _i < $slaves.length; _i++>>
-	<<if $slaves[_i].milkOutput >= 2>>
-		<<if ($slaves[_i].ID != $activeSlave.ID) && $slaves[_i].nipples != "fuckable">>
-			<<set _name = SlaveFullName($slaves[_i])>>
-			<<print "[[_name|FSlaveFeed][$milkTap = $slaves[" + _i + "], $activeSlave.inflation = 1, $activeSlave.inflationType = _descM, $activeSlave.inflationMethod = 3]]">>
-			<<if relativeTerm($activeSlave, $slaves[_i]) != null>>
-				<<print relativeTerm($activeSlave, $slaves[_i])>>
-			<</if>>
-			<<if $slaves[_i].relationshipTarget == $activeSlave.ID>>
-				<<switch $slaves[_i].relationship>>
-				<<case 1>>
-					friends
-				<<case 2>>
-					best friends
-				<<case 3>>
-					friends with benefits
-				<<case 4>>
-					lover
-				<<case 5>>
-					slave $wife
-				<</switch>>
-			<</if>>
-			<<if $slaves[_i].rivalryTarget == $activeSlave.ID>>
-				<<switch $slaves[_i].relationship>>
-				<<case 1>>
-					dislikes
-				<<case 2>>
-					rival
-				<<case 3>>
-					bitterly hates
-				<</switch>>
-			<</if>>
-			<<set _eligibilityMilk2 = 1>>
-			<br>
-		<</if>>
-	<</if>>
-<</for>>
-<<if (_eligibilityMilk2 == 0)>>
-	//You have no slaves capable of producing two liters of milk.//
-<</if>>
-<br><br>
-__4 Liters__
-<br>
-<<if $activeSlave.pregKnown == 0>>
-	<<for _i = 0; _i < $slaves.length; _i++>>
-		<<if $slaves[_i].milkOutput >= 4>>
-			<<if ($slaves[_i].ID != $activeSlave.ID) && $slaves[_i].nipples != "fuckable">>
-				<<set _name = SlaveFullName($slaves[_i])>>
-				<<print "[[_name|FSlaveFeed][$milkTap = $slaves[" + _i + "], $activeSlave.inflation = 2, $activeSlave.inflationType = _descM, $activeSlave.inflationMethod = 3]]">>
-				<<if relativeTerm($activeSlave, $slaves[_i]) != null>>
-					<<print relativeTerm($activeSlave, $slaves[_i])>>
-				<</if>>
-				<<if $slaves[_i].relationshipTarget == $activeSlave.ID>>
-					<<switch $slaves[_i].relationship>>
-					<<case 1>>
-						friends
-					<<case 2>>
-						best friends
-					<<case 3>>
-						friends with benefits
-					<<case 4>>
-						lover
-					<<case 5>>
-						slave $wife
-					<</switch>>
+<h3>Milk Slaves</h3>
+<table width=90%>
+<tr>
+	<th>
+		2 Liters
+	</th>
+	<th>
+		4 Liters
+	</th>
+	<th>
+		8 Liters
+	</th>
+</tr>
+<tr valign="top">
+	/* 2 Liters */
+	<td>
+		<<for _i = 0; _i < $slaves.length; _i++>>
+			<div>
+				<<if $slaves[_i].milkOutput >= 2>>
+					<<if ($slaves[_i].ID != $activeSlave.ID) && $slaves[_i].nipples != "fuckable">>
+						<<set _name = SlaveFullName($slaves[_i])>>
+						<<print "[[_name|FSlaveFeed][$milkTap = $slaves[" + _i + "], $activeSlave.inflation = 1, $activeSlave.inflationType = _descM, $activeSlave.inflationMethod = 3]]">>
+						<<if relativeTerm($activeSlave, $slaves[_i]) != null>>
+							<<print relativeTerm($activeSlave, $slaves[_i])>>
+						<</if>>
+						<<if $slaves[_i].relationshipTarget == $activeSlave.ID>>
+							<<switch $slaves[_i].relationship>>
+							<<case 1>>
+								friends
+							<<case 2>>
+								best friends
+							<<case 3>>
+								friends with benefits
+							<<case 4>>
+								lover
+							<<case 5>>
+								slave $wife
+							<</switch>>
+						<</if>>
+						<<if $slaves[_i].rivalryTarget == $activeSlave.ID>>
+							<<switch $slaves[_i].relationship>>
+							<<case 1>>
+								dislikes
+							<<case 2>>
+								rival
+							<<case 3>>
+								bitterly hates
+							<</switch>>
+						<</if>>
+						<<set _eligibilityMilk2 = 1>>
+					<</if>>
 				<</if>>
-				<<if $slaves[_i].rivalryTarget == $activeSlave.ID>>
-					<<switch $slaves[_i].relationship>>
-					<<case 1>>
-						dislikes
-					<<case 2>>
-						rival
-					<<case 3>>
-						bitterly hates
-					<</switch>>
-				<</if>>
-				<<set _eligibilityMilk4 = 1>>
-				<br>
-			<</if>>
+			</div>
+		<</for>>
+		<<if (_eligibilityMilk2 == 0)>>
+			<div class="note>
+				You have no slaves capable of producing two liters of milk.
+			</div>
 		<</if>>
-	<</for>>
-	<<if (_eligibilityMilk4 == 0)>>
-		//You have no slaves capable of producing four liters of milk.//
-	<</if>>
-	<br><br>
-	__8 Liters__
-	<br>
-	<<for _i = 0; _i < $slaves.length; _i++>>
-		<<if $slaves[_i].milkOutput >= 8>>
-			<<if ($slaves[_i].ID != $activeSlave.ID) && $slaves[_i].nipples != "fuckable">>
-				<<set _name = SlaveFullName($slaves[_i])>>
-				<<print "[[_name|FSlaveFeed][$milkTap = $slaves[" + _i + "], $activeSlave.inflation = 3, $activeSlave.inflationType = _descM, $activeSlave.inflationMethod = 3]]">>
-				<<if relativeTerm($activeSlave, $slaves[_i]) != null>>
-					<<print relativeTerm($activeSlave, $slaves[_i])>>
-				<</if>>
-				<<if $slaves[_i].relationshipTarget == $activeSlave.ID>>
-					<<switch $slaves[_i].relationship>>
-					<<case 1>>
-						friends
-					<<case 2>>
-						best friends
-					<<case 3>>
-						friends with benefits
-					<<case 4>>
-						lover
-					<<case 5>>
-						slave $wife
-					<</switch>>
-				<</if>>
-				<<if $slaves[_i].rivalryTarget == $activeSlave.ID>>
-					<<switch $slaves[_i].relationship>>
-						<<case 1>>
-							dislikes
-						<<case 2>>
-							rival
-						<<case 3>>
-							bitterly hates
-					<</switch>>
-				<</if>>
-				<<set _eligibilityMilk8 = 1>>
-				<br>
+	</td>
+
+	<<if $activeSlave.pregKnown == 0>>
+		/* 4 Liters */
+		<td>
+			<<for _i = 0; _i < $slaves.length; _i++>>
+				<div>	
+					<<if $slaves[_i].milkOutput >= 4>>
+						<<if ($slaves[_i].ID != $activeSlave.ID) && $slaves[_i].nipples != "fuckable">>
+							<<set _name = SlaveFullName($slaves[_i])>>
+							<<print "[[_name|FSlaveFeed][$milkTap = $slaves[" + _i + "], $activeSlave.inflation = 2, $activeSlave.inflationType = _descM, $activeSlave.inflationMethod = 3]]">>
+							<<if relativeTerm($activeSlave, $slaves[_i]) != null>>
+								<<print relativeTerm($activeSlave, $slaves[_i])>>
+							<</if>>
+							<<if $slaves[_i].relationshipTarget == $activeSlave.ID>>
+								<<switch $slaves[_i].relationship>>
+								<<case 1>>
+									friends
+								<<case 2>>
+									best friends
+								<<case 3>>
+									friends with benefits
+								<<case 4>>
+									lover
+								<<case 5>>
+									slave $wife
+								<</switch>>
+							<</if>>
+							<<if $slaves[_i].rivalryTarget == $activeSlave.ID>>
+								<<switch $slaves[_i].relationship>>
+								<<case 1>>
+									dislikes
+								<<case 2>>
+									rival
+								<<case 3>>
+									bitterly hates
+								<</switch>>
+							<</if>>
+							<<set _eligibilityMilk4 = 1>>
+						<</if>>
+					<</if>>
+				</div>
+			<</for>>
+			<<if (_eligibilityMilk4 == 0)>>
+				<div class="note>
+					You have no slaves capable of producing four liters of milk.
+				</div>
 			<</if>>
-		<</if>>
-	<</for>>
-	<<if (_eligibilityMilk8 == 0)>>
-		//You have no slaves capable of producing eight liters of milk.//
-	<</if>>
-<<else>>
-	Due to $his pregnancy, $he is incapable of keeping down more than two liters of milk.
-<</if>>
-<br><br><br><br>
+		</td>
 
-__Cum Slaves__
-<br><br>
-__2 Liters__
-<br>
-<<for _i = 0; _i < $slaves.length; _i++>>
-	<<if $slaves[_i].cumOutput >= 2>>
-		<<if ($slaves[_i].ID != $activeSlave.ID)>>
-			<<set _name = SlaveFullName($slaves[_i])>>
-			<<print "[[_name|FSlaveFeed][$milkTap = $slaves[" + _i + "], $activeSlave.inflation = 1, $activeSlave.inflationType = _descC, $activeSlave.inflationMethod = 3]]">>
-			<<set _eligibilityCum2 = 1>>
-			<br>
-		<</if>>
-	<</if>>
-<</for>>
-<<if (_eligibilityCum2 == 0)>>
-	//You have no slaves capable of producing two liters of cum.//
-<</if>>
-<br><br>
-__4 Liters__
-<br>
-<<if $activeSlave.pregKnown == 0>>
-	<<for _i = 0; _i < $slaves.length; _i++>>
-		<<if $slaves[_i].cumOutput >= 4>>
-			<<if ($slaves[_i].ID != $activeSlave.ID)>>
-				<<set _name = SlaveFullName($slaves[_i])>>
-				<<print "[[_name|FSlaveFeed][$milkTap = $slaves[" + _i + "], $activeSlave.inflation = 2, $activeSlave.inflationType = _descC, $activeSlave.inflationMethod = 3]]">>
-				<<set _eligibilityCum4 = 1>>
-				<br>
+		/* 8 Liters */
+		<td>
+			<<for _i = 0; _i < $slaves.length; _i++>>
+				<div>
+					<<if $slaves[_i].milkOutput >= 8>>
+						<<if ($slaves[_i].ID != $activeSlave.ID) && $slaves[_i].nipples != "fuckable">>
+							<<set _name = SlaveFullName($slaves[_i])>>
+							<<print "[[_name|FSlaveFeed][$milkTap = $slaves[" + _i + "], $activeSlave.inflation = 3, $activeSlave.inflationType = _descM, $activeSlave.inflationMethod = 3]]">>
+							<<if relativeTerm($activeSlave, $slaves[_i]) != null>>
+								<<print relativeTerm($activeSlave, $slaves[_i])>>
+							<</if>>
+							<<if $slaves[_i].relationshipTarget == $activeSlave.ID>>
+								<<switch $slaves[_i].relationship>>
+								<<case 1>>
+									friends
+								<<case 2>>
+									best friends
+								<<case 3>>
+									friends with benefits
+								<<case 4>>
+									lover
+								<<case 5>>
+									slave $wife
+								<</switch>>
+							<</if>>
+							<<if $slaves[_i].rivalryTarget == $activeSlave.ID>>
+								<<switch $slaves[_i].relationship>>
+									<<case 1>>
+										dislikes
+									<<case 2>>
+										rival
+									<<case 3>>
+										bitterly hates
+								<</switch>>
+							<</if>>
+							<<set _eligibilityMilk8 = 1>>
+						<</if>>
+					<</if>>
+				</div>
+			<</for>>
+			<<if (_eligibilityMilk8 == 0)>>
+				<div class="note>
+					You have no slaves capable of producing eight liters of milk.
+				</div>
 			<</if>>
-		<</if>>
-	<</for>>
-	<<if (_eligibilityCum4 == 0)>>
-		//You have no slaves capable of producing four liters of cum.//
+		</td>
+	<<else>>
+		<td>
+			Due to $his pregnancy, $he is incapable of keeping down more than two liters of milk.
+		</td>
 	<</if>>
-	<br><br>
-	__8 Liters__
-	<br>
-	<<for _i = 0; _i < $slaves.length; _i++>>
-		<<if $slaves[_i].cumOutput >= 8>>
-			<<if ($slaves[_i].ID != $activeSlave.ID)>>
-				<<set _name = SlaveFullName($slaves[_i])>>
-				<<print "[[_name|FSlaveFeed][$milkTap = $slaves[" + _i + "], $activeSlave.inflation = 3, $activeSlave.inflationType = _descC, $activeSlave.inflationMethod = 3]]">>
-				<<set _eligibilityCum8 = 1>>
-				<br>
+</tr>
+</table>
+
+<h3>Cum Slaves</h3>
+<table width=90%>
+	<tr>
+		<th>
+			2 Liters
+		</th>
+		<th>
+			4 Liters
+		</th>
+		<th>
+			8 Liters
+		</th>
+	</tr>
+
+	<tr valign="top">
+		/* 2 Liters */
+		<td>
+			<<for _i = 0; _i < $slaves.length; _i++>>
+				<div>
+					<<if $slaves[_i].cumOutput >= 2>>
+						<<if ($slaves[_i].ID != $activeSlave.ID)>>
+							<<set _name = SlaveFullName($slaves[_i])>>
+							<<print "[[_name|FSlaveFeed][$milkTap = $slaves[" + _i + "], $activeSlave.inflation = 1, $activeSlave.inflationType = _descC, $activeSlave.inflationMethod = 3]]">>
+							<<set _eligibilityCum2 = 1>>
+						<</if>>
+					<</if>>
+				</div>
+			<</for>>
+			<<if (_eligibilityCum2 == 0)>>
+				<div class="note>
+					You have no slaves capable of producing two liters of cum.
+				</div>
 			<</if>>
+		</td>
+
+		<<if $activeSlave.pregKnown == 0>>
+			/* 4 Liters */
+			<td>
+				<<for _i = 0; _i < $slaves.length; _i++>>
+					<div>
+						<<if $slaves[_i].cumOutput >= 4>>
+							<<if ($slaves[_i].ID != $activeSlave.ID)>>
+								<<set _name = SlaveFullName($slaves[_i])>>
+								<<print "[[_name|FSlaveFeed][$milkTap = $slaves[" + _i + "], $activeSlave.inflation = 2, $activeSlave.inflationType = _descC, $activeSlave.inflationMethod = 3]]">>
+								<<set _eligibilityCum4 = 1>>
+							<</if>>
+						<</if>>
+					</div>
+				<</for>>
+				
+				<<if (_eligibilityCum4 == 0)>>
+					<div class="note>
+						You have no slaves capable of producing four liters of cum.
+					</div>
+				<</if>>
+			</td>
+
+			/* 8 Liters */
+			<td>
+				<<for _i = 0; _i < $slaves.length; _i++>>
+					<div>
+						<<if $slaves[_i].cumOutput >= 8>>
+							<<if ($slaves[_i].ID != $activeSlave.ID)>>
+								<<set _name = SlaveFullName($slaves[_i])>>
+								<<print "[[_name|FSlaveFeed][$milkTap = $slaves[" + _i + "], $activeSlave.inflation = 3, $activeSlave.inflationType = _descC, $activeSlave.inflationMethod = 3]]">>
+								<<set _eligibilityCum8 = 1>>
+							<</if>>
+						<</if>>
+					</div>
+				<</for>>
+				<<if (_eligibilityCum8 == 0)>>
+					<div class="note>
+						You have no slaves capable of producing eight liters of cum.
+					</div>
+				<</if>>
+			</td>
+		<<else>>
+			<td>
+				Due to $his pregnancy, $he is incapable of keeping down more than two liters of cum.
+			</td>
 		<</if>>
-	<</for>>
-	<<if (_eligibilityCum8 == 0)>>
-		//You have no slaves capable of producing eight liters of cum.//
-	<</if>>
-<<else>>
-	Due to $his pregnancy, $he is incapable of keeping down more than two liters of cum.
-<</if>>
+	</tr>
+</table>