diff --git a/Changelog.txt b/Changelog.txt
index 5a1fdc08837c457ecfbaea7c004d46ecd70f97f8..ace29640242c90fb11b3bb7991b4068b7da9ce78 100644
--- a/Changelog.txt
+++ b/Changelog.txt
@@ -3,6 +3,7 @@ Pregmod
 0.10.7.1-3.4.x
 
 	0
+	-added Stud subordinate slave role and associated universal impregnation rule
 	-arcology layout overhauled
 	-fixes
 
diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw
index 2655e7b66410973ef4967f873cd51cb03f7455bb..0f62ef11f04bfa60b8038c8a711228c55f5aa8a8 100644
--- a/src/uncategorized/slaveInteract.tw
+++ b/src/uncategorized/slaveInteract.tw
@@ -395,11 +395,19 @@
 <div id="Rules" class="tabcontent">
 	<div class="content">
 		<p>
-			<<if $universalRulesImpregnation == "HG" && $seePreg != 0>>
-				<<if $slaves[_i].HGExclude == 0>>
-					Will be bred by the Head Girl when fertile. <<link "Exempt $him" "Slave Interact">><<set $slaves[_i].HGExclude = 1>><</link>>
-				<<else>>
-					Will not be bred by the Head Girl when fertile. <<link "Include $him" "Slave Interact">><<set $slaves[_i].HGExclude = 0>><</link>>
+			<<if $seePreg != 0>>
+				<<if $universalRulesImpregnation == "HG">>
+					<<if $slaves[_i].HGExclude == 0>>
+						Will be bred by the Head Girl when fertile. <<link "Exempt $him" "Slave Interact">><<set $slaves[_i].HGExclude = 1>><</link>>
+					<<else>>
+						Will not be bred by the Head Girl when fertile. <<link "Include $him" "Slave Interact">><<set $slaves[_i].HGExclude = 0>><</link>>
+					<</if>>
+				<<elseif $universalRulesImpregnation == "Stud">>
+					<<if $slaves[_i].StudExclude == 0>>
+						Will be bred by your Stud when fertile. <<link "Exempt $him" "Slave Interact">><<set $slaves[_i].StudExclude = 1>><</link>>
+					<<else>>
+						Will not be bred by your Stud when fertile. <<link "Include $him" "Slave Interact">><<set $slaves[_i].StudExclude = 0>><</link>>
+					<</if>>
 				<</if>>
 			<</if>>
 		</p>