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 !6523
parents 3eec858b 12b8d2f6
No related branches found
No related tags found
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
<<elseif _curBabies > 1>>
<<set _firstChild = 1>>
<<for _p = 0; _p < _curBabies; _p++>>
<<set _PCDegree = 0>>
......@@ -405,7 +406,13 @@ You arrange yourself to give birth, relaxing until your body urges you to begin
<<set _PCDegree++>>
<</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>>
looks exactly like the previous; they're identical twins.
<<elseif $PC.pregSource == -1>>
......
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