diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index 1164d92832ff438a30f5bf3bbc5861ece4796aef..d67264bc42bfc92e235b124fffbd4ed3900b9f90 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -6,7 +6,7 @@
 
 	6
 	-new voluntarily enslaved pairs can show their incestual love during recruitment
-	-minor tweaks to muscle building and hormones
+	-minor tweaks to muscle building and steroids
 	-added fertility diet
 
 	5
diff --git a/devNotes/twine JS b/devNotes/twine JS
index 4ffa061ce60c01da895ce519470fc76cd1e68f57..b0385276f99985329629199635113d9326629c25 100644
--- a/devNotes/twine JS	
+++ b/devNotes/twine JS	
@@ -1352,6 +1352,10 @@ window.setPregType = function(actor) {
 				ovum += jsEither([0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2, 2, 2, 3]);
 				fertilityStack++;
 			}
+			if(actor.diet == "fertility") {
+				ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]);
+				fertilityStack++;
+			}
 			if(State.variables.masterSuitePregnancyFertilitySupplements == 1 && ((actor.assignment == "serve in the master suite" || actor.assignment == "be your Concubine"))) {
 				ovum += jsEither([0, 0, 0, 1, 1, 2, 2, 2, 3, 3]);
 				fertilityStack++;
diff --git a/src/js/pregJS.tw b/src/js/pregJS.tw
index 728d096a212c461e903039632e2eac6f0e895c96..c43af5c64ab68481d66a56a7610a0f467a0d7e7c 100644
--- a/src/js/pregJS.tw
+++ b/src/js/pregJS.tw
@@ -101,6 +101,10 @@ window.setPregType = function(actor) {
 				ovum += jsEither([0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2, 2, 2, 3]);
 				fertilityStack++;
 			}
+			if(actor.diet == "fertility") {
+				ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]);
+				fertilityStack++;
+			}
 			if(State.variables.masterSuitePregnancyFertilitySupplements == 1 && ((actor.assignment == "serve in the master suite" || actor.assignment == "be your Concubine"))) {
 				ovum += jsEither([0, 0, 0, 1, 1, 2, 2, 2, 3, 3]);
 				fertilityStack++;