diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index 69f557ecd86b004abad56869da903baeb8cf11aa..4a14c7c15a6e119f8b1b066f10f389605901a891 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -2555,7 +2555,7 @@ window.getSlaveCost = function(s) {
 			cost -= foodCost;
 			break;
 	}
-	if(s.geneticQuirks.fertility == 2 && s.geneticQuirks.hyperFertility == 2) {
+	if(s.geneticQuirks.fertility == 2 && s.geneticQuirks.hyperFertility == 2 && s.preg == 0 && (s.ovaries == 1 || s.mpreg == 1)) {
 		cost += foodCost * .5;
 	}
 	if(s.weight > 130) {
diff --git a/src/js/economyJS.tw b/src/js/economyJS.tw
index f3b56f444f51115036ce174597706fe2917768d2..05a00db7cafe7dd9d824568968ba79da86c03898 100644
--- a/src/js/economyJS.tw
+++ b/src/js/economyJS.tw
@@ -452,7 +452,7 @@ window.getSlaveCost = function(s) {
 			cost -= foodCost;
 			break;
 	}
-	if(s.geneticQuirks.fertility == 2 && s.geneticQuirks.hyperFertility == 2) {
+	if(s.geneticQuirks.fertility == 2 && s.geneticQuirks.hyperFertility == 2 && s.preg == 0 && (s.ovaries == 1 || s.mpreg == 1)) {
 		cost += foodCost * .5;
 	}
 	if(s.weight > 130) {
diff --git a/src/pregmod/geneLab.tw b/src/pregmod/geneLab.tw
index 603565ef09eae87888fb00aab3a659c3fc889d3f..b925fa3794b21b982a11b945a4f13e4231f1a395 100644
--- a/src/pregmod/geneLab.tw
+++ b/src/pregmod/geneLab.tw
@@ -14,7 +14,7 @@ Genetic Modification
 <hr>
 
 <<if $dispensaryUpgrade == 0>>
-	//The fabricator must upgraded before it can produce treatments to alter genes//
+	//The fabricator must be upgraded before it can produce treatments to alter genes//
 	<br>
 <<else>>
 	The fabricator is capable of producing treatments to alter a slave's genetic code.
diff --git a/src/uncategorized/costsReport.tw b/src/uncategorized/costsReport.tw
index 07f7d4f835b619b404696f09838ee44c95d1c690..1665818c2b2bdd84163370972dafa105f3126064 100644
--- a/src/uncategorized/costsReport.tw
+++ b/src/uncategorized/costsReport.tw
@@ -524,6 +524,15 @@ $nursery > 0 || $masterSuiteUpgradePregnancy > 0 || $incubator > 0 ||
 			<<set _individualCosts -= $foodCost>>
 		<</if>>
 	<</if>>
+	<<if ($slaves[$i].geneticQuirks.fertility == 2 && $slaves[$i].geneticQuirks.hyperFertility == 2 && $slaves[$i].preg == 0 && ($slaves[$i].ovaries == 1 || $slaves[$i].mpreg == 1))>>
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;
+		<<if $geneticMappingUpgrade == 1>>
+			<i>Additional dietary supplements due to genetic hyper-fertility:</i> @@.yellowgreen;<<print cashFormat($foodCost/2)>>@@
+		<<else>>
+			<i>Adjustment for unusual deitary deficiencies:</i> @@.yellowgreen;<<print cashFormat($foodCost/2)>>@@
+		<</if>>
+		<<set _individualCosts += $foodCost/2>>
+	<</if>>
 	<<if $slaves[$i].drugs == "appetite suppressors">>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;<i>Food saved via suppressed appetite:</i> //reduced by// @@.yellowgreen;<<print cashFormat($foodCost)>>@@
 		<<set _individualCosts -= $foodCost>>
diff --git a/src/utility/descriptionWidgets.tw b/src/utility/descriptionWidgets.tw
index 11a3715090e12f4f9b076783e96849977987648d..11dd3d0419c8886f90e6a0140dacb4dfa3ac900d 100644
--- a/src/utility/descriptionWidgets.tw
+++ b/src/utility/descriptionWidgets.tw
@@ -255,6 +255,34 @@
 
 <</widget>>
 
+<<widget "geneticQuirkAssessment">>
+
+<<if $geneticMappingUpgrade == 1>>
+	<<if $activeSlave.geneticQuirks.fertility == 2 && $activeSlave.geneticQuirks.hyperFertility == 2>>
+		$He has a unique genetic condition resulting in inhumanly high
+		<<if $activeSlave.ovaries == 1 || $activeSlave.mpreg == 1>>
+			fertility; risky intercourse will result in multiple pregnancy.
+		<<else>>
+			fertility.
+		<</if>>
+	<<elseif $activeSlave.geneticQuirks.hyperFertility == 2>>
+		$He prone to extreme
+		<<if $activeSlave.ovaries == 1 || $activeSlave.mpreg == 1>>
+			fertility and will likely undergo multiple pregnancy.
+		<<else>>
+			fertility.
+		<</if>>
+	<<elseif $activeSlave.geneticQuirks.fertility == 2>>
+		$He is naturally 
+		<<if $activeSlave.ovaries == 1 || $activeSlave.mpreg == 1>>
+			fertile and prone to having twins.
+		<<else>>
+			fertile.
+		<</if>>
+	<</if>>
+<</if>>
+
+<</widget>>
 
 <<widget "brandDescription">>