From 8c39ea6db997a187939d365542c6087b03734ac8 Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Sun, 15 Mar 2020 00:16:04 -0400
Subject: [PATCH] stud work

---
 Changelog.txt                      |  1 +
 src/uncategorized/slaveInteract.tw | 18 +++++++++++++-----
 2 files changed, 14 insertions(+), 5 deletions(-)

diff --git a/Changelog.txt b/Changelog.txt
index 5a1fdc08837..ace29640242 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 2655e7b6641..0f62ef11f04 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>
-- 
GitLab