diff --git a/devNotes/twine JS b/devNotes/twine JS
index d0ed34968a57662fcb7edbe7330777e363b73d22..39a46f153182aea28fe854fd2be5ab04bbe37002 100644
--- a/devNotes/twine JS	
+++ b/devNotes/twine JS	
@@ -293,7 +293,11 @@ window.canImpreg = function(slave1, slave2) {
 window.isFertile = function(slave) {
 	if (!slave) {
 		return null;
-	} else if (slave.preg > 0 || slave.broodmother > 0) { /* currently pregnant or broodmother */
+	}
+
+	WombInit(slave);
+
+	if (slave.womb.length > 0 || slave.broodmother > 0) { /* currently pregnant or broodmother */
 		return false;
 	} else if (slave.preg < -1) { /* sterile */
 		return false;
diff --git a/src/uncategorized/neighborsDevelopment.tw b/src/uncategorized/neighborsDevelopment.tw
index 39f4258f3943c78baa95c3856b70ebeff83774f5..99cd0ecd1316a8fa434dad9c61ee085876a7a0a1 100644
--- a/src/uncategorized/neighborsDevelopment.tw
+++ b/src/uncategorized/neighborsDevelopment.tw
@@ -1415,8 +1415,8 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(Math.trunc((0.1*$arcol
 	<</if>>
 	<</if>>
 	<<if $corpIncorporated == 1>>
-	<<if $captureUpgradeAge == "young">>
-		It's a @@.lightgreen;good market@@ for your corporation's young slaves, improving sales and helping social progress.
+	<<if $captureUpgradeAge == "old">>
+		It's a @@.lightgreen;good market@@ for your corporation's motherly slaves, especially those that look like peoples mothers, improving sales and helping social progress.
 		<<set $arcologies[$i].FSIncestFetishist += 1>>
 		<<set $corpCash += _corpBonus>>
 	<</if>>