Skip to content
Snippets Groups Projects
Commit 8bcce98c authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'fixes' into 'pregmod-master'

Forgot about surrogacy

See merge request pregmodfan/fc-pregmod!3133
parents bf9ea50a f0b6e43a
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ You should have received a copy of the GNU General Public License along with thi ...@@ -15,7 +15,7 @@ You should have received a copy of the GNU General Public License along with thi
<<set $returnTo = "init", $nextButton = "Continue", $nextLink = "Alpha disclaimer">> <<set $returnTo = "init", $nextButton = "Continue", $nextLink = "Alpha disclaimer">>
<<unset $releaseID>> <<unset $releaseID>>
<<set $ver = "0.10.7", $pmodVer = "1.3.X", $releaseID = 1035>> <<set $ver = "0.10.7", $pmodVer = "1.3.X", $releaseID = 1036>>
<<if ndef $pmodVer>><<set $pmodVer = "1.3.X">><</if>> <<if ndef $pmodVer>><<set $pmodVer = "1.3.X">><</if>>
/* This needs to be broken down into individual files that can be added to StoryInit instead. */ /* This needs to be broken down into individual files that can be added to StoryInit instead. */
......
...@@ -123,6 +123,13 @@ ...@@ -123,6 +123,13 @@
<<if ndef $args[0].lactationRules>> <<if ndef $args[0].lactationRules>>
<<set $args[0].lactationRules = "none">> <<set $args[0].lactationRules = "none">>
<</if>> <</if>>
<<if $releaseID < 1036>>
<<for _pmw = 0; _pmw < $args[0].womb.length; _pmw++>>
<<if $args[0].womb[_pmw].genetics.mother !== $args[0].womb[_pmw].motherID || $args[0].womb[_pmw].genetics.father !== $args[0].womb[_pmw].fatherID>>
<<set $args[0].womb[_pmw].genetics = generateGenetics($args[0], $args[0].womb[_pmw].fatherID, _pmw)>>
<</if>>
<</for>>
<</if>>
<</widget>> <</widget>>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment