diff --git a/src/events/recETS/recetsPoshMotherDaughter.js b/src/events/recETS/recetsPoshMotherDaughter.js
index b47ddd6e48c86c05a2008c5844b26a17fbdc6268..f6916563e603c180d5adbf61fb93d3274aacbd22 100644
--- a/src/events/recETS/recetsPoshMotherDaughter.js
+++ b/src/events/recETS/recetsPoshMotherDaughter.js
@@ -16,7 +16,7 @@ App.Events.recetsPoshMotherDaughter = class recetsPoshMotherDaughter extends App
 
 		let pram = new GenerateNewSlavePram();
 		Object.apply(pram, {
-			minAge: V.fertilityAge + V.minimumSlaveAge, maxAge: 40, ageOverridesPedoMode: 1, disableDisability: 1, race: "nonslave"
+			minAge: Math.max(V.fertilityAge + V.minimumSlaveAge, 16), maxAge: 40, ageOverridesPedoMode: 1, disableDisability: 1, race: "nonslave"
 		});
 		const contractCost = 1500;
 		const mother = GenerateNewSlave("XX", pram);
@@ -66,7 +66,7 @@ App.Events.recetsPoshMotherDaughter = class recetsPoshMotherDaughter extends App
 			daughter2, he2, his2, him2
 		} = getPronouns(daught).appendSuffix("2");
 
-		App.Events.addParagraph(node, [`An older ${woman} comes to see you representing ${his} family business. ${He}'s pretty enough, but extremely unpleasant to deal with. ${He} pushes hard for a deal that strongly favors ${him}, and is not above leaning over your desk to give you an eyeful of probably-enhanced cleavage behind ${his} business attire. As you argue, a discreet alert appears on your desk: ${his} family business is actually on the verge of bankruptcy. With a press of your thumb you could acquire enough of ${his} debts to be able to enslave ${him}. And what's more, ${his} ${daughter2} just came of age and became a partner in the business. ${He2}'s in play, too. Based on the desk report, ${he2}'s likely to be a spoiled little bitch.`]);
+		App.Events.addParagraph(node, [`A${mother.actualAge > 24 ? "n older" : "young"} ${woman} comes to see you representing ${his} family business. ${He}'s pretty enough, but extremely unpleasant to deal with. ${He} pushes hard for a deal that strongly favors ${him}, and is not above leaning over your desk to give you an eyeful of probably-enhanced cleavage behind ${his} business attire. As you argue, a discreet alert appears on your desk: ${his} family business is actually on the verge of bankruptcy. With a press of your thumb you could acquire enough of ${his} debts to be able to enslave ${him}. And what's more, ${his} ${daughter2} ${daught.actualAge === V.minimumSlaveAge ? "just came of age and became" : "is"} a partner in the business. ${He2}'s in play, too. Based on the desk report, ${he2}'s likely to be a spoiled little bitch.`]);
 
 		App.Events.addParagraph(node, [`Enslaving the mother will cost ${cashFormat(contractCost)}. Alternatively, you could sell your rights to ${him}. Including costs, this will bring in ${cashFormat(cost - contractCost)}. As a third option, for ${cashFormat(contractCost * 2)} you could enslave both mother and ${daughter2}, but you wouldn't be able to examine the ${daughter2} first.`]);