From fc3d6fa2762061bdafd11dce924e5804b122be72 Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Sun, 12 Mar 2017 13:53:38 -0400
Subject: [PATCH] Tweaks and fixes.

---
 src/npc/startingGirls/startingGirls.tw   |  4 ++--
 src/uncategorized/reRelativeRecruiter.tw |  2 +-
 src/utility/miscWidgets.tw               | 14 +++++++-------
 3 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/src/npc/startingGirls/startingGirls.tw b/src/npc/startingGirls/startingGirls.tw
index 7f9a182e9ab..d09ceb0b296 100644
--- a/src/npc/startingGirls/startingGirls.tw
+++ b/src/npc/startingGirls/startingGirls.tw
@@ -113,7 +113,7 @@ __You are customizing this slave:__
 <<if $activeSlave.father == -1>>
 	<<if $PC.dick == 0>>
 		<<set $activeSlave.father = 0>>
-	<<elseif ($PC.actualAge - $activeSlave.actualAge) < $minimumSlaveAge>>
+	<<elseif ($PC.actualAge - $activeSlave.actualAge) < $minimumSlaveAge || (($PC.actualAge - $activeSlave.actualAge) < $potencyAge)>>
 		<<set $activeSlave.father = 0>>
 	<</if>>
 	<<if $saveImported == 1>>
@@ -123,7 +123,7 @@ __You are customizing this slave:__
 <<if $activeSlave.mother == -1>>
 	<<if $PC.vagina == 0>>
 		<<set $activeSlave.mother = 0>>
-	<<elseif ($PC.actualAge - $activeSlave.actualAge) < $minimumSlaveAge>>
+	<<elseif (($PC.actualAge - $activeSlave.actualAge) < $minimumSlaveAge) || (($PC.actualAge - $activeSlave.actualAge) < $fertilityAge)>>
 		<<set $activeSlave.mother = 0>>
 	<</if>>
 	<<if $saveImported == 1>>
diff --git a/src/uncategorized/reRelativeRecruiter.tw b/src/uncategorized/reRelativeRecruiter.tw
index 67e4f8d8703..76ce7f2ec5f 100644
--- a/src/uncategorized/reRelativeRecruiter.tw
+++ b/src/uncategorized/reRelativeRecruiter.tw
@@ -227,7 +227,7 @@ She waits anxiously for your decision.
 	<<set $activeSlave.entertainSkill = 10>>
 	<<set $activeSlave.whoreSkill = 10>>
 	<<set $activeSlave.boobs = (random(12,20)*100)>>
-	<<set $activeSlave.butt = random(4,6)
+	<<set $activeSlave.butt = random(4,6)>>
 	<<set $activeSlave.boobShape = "saggy">>
 	<<set $activeSlave.lactation to 1>>
 	<<set $activeSlave.marking = "birthmark">>
diff --git a/src/utility/miscWidgets.tw b/src/utility/miscWidgets.tw
index 6cc6b3aaad5..c195b88c757 100644
--- a/src/utility/miscWidgets.tw
+++ b/src/utility/miscWidgets.tw
@@ -1315,8 +1315,8 @@
 
 <<if $args[0].fetish == $args[1]>>
 This experience
-<<if $$args[0].fetishKnown == 1>>
-	<<if $$args[0].fetishStrength > 95>>
+<<if $args[0].fetishKnown == 1>>
+	<<if $args[0].fetishStrength > 95>>
 		@@color:lightsalmon;<<switch $args[0].fetish>>
 		<<case "submissive">>deepens her sexual need to submit.
 		<<case "cumslut">>increases her appetite for oral sex.
@@ -1329,22 +1329,22 @@ This experience
 		<<case "pregnancy">>further confuses lust and pregnancy in her mind.
 		<<default>>ERROR: bad fetish
 		<</switch>>@@
-		<<set $$args[0].fetishStrength += 10>>
+		<<set $args[0].fetishStrength += 10>>
 	<<else>>
 		is @@color:hotpink;especially enjoyable for her,@@ since
 		<<switch $args[0].fetish>>
 		<<case "submissive">>she's an utterly submissive little slut.
-		<<case "cumslut">>her <<if $$args[0].vagina > -1>>clit<<else>>frenulum<</if>> might as well be located in her throat.
+		<<case "cumslut">>her <<if $args[0].vagina > -1>>clit<<else>>frenulum<</if>> might as well be located in her throat.
 		<<case "humiliation">>she has a hopeless need to be humiliated and degraded.
 		<<case "buttslut">>she's completely in love with having her ass fucked.
 		<<case "boobs">>she loves breast play more than any other kind of sex.
 		<<case "sadist">>nothing is as titillating to her as another slave's pain can be.
 		<<case "masochist">>she loves pain more than she likes pleasure.
 		<<case "dom">>she lives for the times she's allowed to fuck someone.
-		<<case "pregnancy">>all her deepest sexual desires involve <<if $$args[0].vagina > -1>>pregnancy<<else>>impregnation<</if>>.
+		<<case "pregnancy">>all her deepest sexual desires involve <<if $args[0].vagina > -1>>pregnancy<<else>>impregnation<</if>>.
 		<<default>>ERROR: bad fetish
 		<</switch>>
-		<<set $$args[0].devotion += 3>>
+		<<set $args[0].devotion += 3>>
 	<</if>>
 <<else>>
 	was surprisingly appealing for her, revealing that she's a
@@ -1355,7 +1355,7 @@ This experience
 	<<case "pregnancy">>pregslut!
 	<<default>>$args[0]!
 	<</switch>>@@
-	<<set $$args[0].fetishKnown = 1>>
+	<<set $args[0].fetishKnown = 1>>
 <</if>>
 <</if>>
 
-- 
GitLab