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

Merge branch 'pregmod-dev' into 'pregmod-master'

Fixed player birth child counting

Closes #1669

See merge request pregmodfan/fc-pregmod!6523
parents 3eec858b 12b8d2f6
Branches
Tags
1 merge request!6523Fixed player birth child counting
...@@ -389,6 +389,7 @@ You arrange yourself to give birth, relaxing until your body urges you to begin ...@@ -389,6 +389,7 @@ You arrange yourself to give birth, relaxing until your body urges you to begin
<<elseif _curBabies > 1>> <<elseif _curBabies > 1>>
<<set _firstChild = 1>>
<<for _p = 0; _p < _curBabies; _p++>> <<for _p = 0; _p < _curBabies; _p++>>
<<set _PCDegree = 0>> <<set _PCDegree = 0>>
...@@ -405,7 +406,13 @@ You arrange yourself to give birth, relaxing until your body urges you to begin ...@@ -405,7 +406,13 @@ You arrange yourself to give birth, relaxing until your body urges you to begin
<<set _PCDegree++>> <<set _PCDegree++>>
<</if>> <</if>>
<<if _p == 0>>Your first<<else>>The next<</if>> little <<if $PC.curBabies[_p].genetics.gender == "XX">>girl<<else>>boy<</if>> <<if _firstChild == 1>>
Your first
<<set _firstChild = 0>>
<<else>>
The next
<</if>>
little <<if $PC.curBabies[_p].genetics.gender == "XX">>girl<<else>>boy<</if>>
<<if _identicalChildGen == 1>> <<if _identicalChildGen == 1>>
looks exactly like the previous; they're identical twins. looks exactly like the previous; they're identical twins.
<<elseif $PC.pregSource == -1>> <<elseif $PC.pregSource == -1>>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment