From c558eba228fc325deac19ef017b4c43ed1d6ab0e Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Wed, 1 Mar 2017 05:24:07 -0500 Subject: [PATCH] Beginning of player permanence. --- src/npc/startingGirls/startingGirls.tw | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/npc/startingGirls/startingGirls.tw b/src/npc/startingGirls/startingGirls.tw index d0fcccebdf9..ece54547293 100644 --- a/src/npc/startingGirls/startingGirls.tw +++ b/src/npc/startingGirls/startingGirls.tw @@ -120,6 +120,9 @@ __You are customizing this slave:__ <<elseif $PC.age == 3 && $activeSlave.actualAge > 30>> <<set $activeSlave.father = 0>> <</if>> + <<if $saveImported == 1>> + <<set $activeSlave.father = 0>> + <</if>> <</if>> <<if $activeSlave.mother == -1>> <<if $PC.vagina == 0>> @@ -131,6 +134,9 @@ __You are customizing this slave:__ <<elseif $PC.age == 3 && $activeSlave.actualAge > 30>> <<set $activeSlave.mother = 0>> <</if>> + <<if $saveImported == 1>> + <<set $activeSlave.mother = 0>> + <</if>> <</if>> /* this block makes starting girls actually apply the slave origins, mostly since it just hates you and everything you do */ <<if $PC.career is "capitalist">> @@ -488,6 +494,7 @@ __You are customizing this slave:__ <br> ''Slave ID'' //be reasonable. Make sure to refresh to resync IDs.// +<<if $saveImported == 1>>//Player children are not available in NG+ due to code limitations (Since the player's background changes with ng+, consistancy issues arise.)//<</if>> <br><<print $activeSlave.ID>> <br> -- GitLab