From 3b8db437d5b9a6ac23482a84074f10e17a97e688 Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Sat, 1 Sep 2018 04:01:57 -0400 Subject: [PATCH] fixes --- src/events/intro/introSummary.tw | 4 ++-- src/pregmod/newChildIntro.tw | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/events/intro/introSummary.tw b/src/events/intro/introSummary.tw index 3a474036c73..2b1bb56214b 100644 --- a/src/events/intro/introSummary.tw +++ b/src/events/intro/introSummary.tw @@ -152,10 +152,10 @@ __''General slave settings''__ <br> <<if $allowMaleSlaveNames>> Slaves ''can generate with male names.'' - [[Only use female names|Options][$allowMaleSlaveNames = false]] + [[Only use female names|Intro Summary][$allowMaleSlaveNames = "false"]] <<else>> Slaves will ''always generate with female names.'' - [[Allow male names|Options][$allowMaleSlaveNames = true]] + [[Allow male names|Intro Summary][$allowMaleSlaveNames = "true"]] <</if>> //This only affects slave generation and not your ability to name your slaves.// diff --git a/src/pregmod/newChildIntro.tw b/src/pregmod/newChildIntro.tw index f255075db38..bcdd21ab2ef 100644 --- a/src/pregmod/newChildIntro.tw +++ b/src/pregmod/newChildIntro.tw @@ -175,7 +175,7 @@ You completed the legalities before heading to $incubatorName, knowing the tank <</link>> <</if>> <</if>> -<<if $activeSlave.father > 0>> +<<if $activeSlave.father > 0 && $activeSlave.father != $activeSlave.mother>> <<setLocalPronouns _tempDad 2>> <<if _tempDad.ID == $Concubine.ID>> <br><<link "Permit your Concubine to name _his2 daughter">> @@ -238,7 +238,7 @@ You completed the legalities before heading to $incubatorName, knowing the tank <br><br> <span id="newName">''__@@.pink;$activeSlave.slaveName@@__''</span> now stands before your desk -<<if $activeSlave.mother > 0 && $activeSlave.father > 0>> +<<if $activeSlave.mother > 0 && $activeSlave.father > 0 && $activeSlave.father != $activeSlave.mother>> alongside $his mother _tempMom.slaveName and father _tempDad.slaveName. <<elseif $activeSlave.mother > 0>> alongside $his mother _tempMom.slaveName. @@ -348,7 +348,7 @@ You completed the legalities before heading to $incubatorName, knowing the tank <</if>> <</if>> -<<if $activeSlave.father > 0>> +<<if $activeSlave.father > 0 && $activeSlave.father != $activeSlave.mother>> <<setLocalPronouns _tempDad 2>> $He glances at $his father <<if _tempDad.relationship == -3>> @@ -435,7 +435,7 @@ You completed the legalities before heading to $incubatorName, knowing the tank <br><br> -<<if $activeSlave.mother > 0 && $activeSlave.father > 0>> +<<if $activeSlave.mother > 0 && $activeSlave.father > 0 && $activeSlave.father != $activeSlave.mother>> You dismiss _tempMom.slaveName and _tempDad.slaveName so that you may conduct a more intimate inspection of their daughter. <<elseif $activeSlave.mother > 0>> <<setLocalPronouns _tempMom 2>> -- GitLab