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

Fixes.

parent 0af10740
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@
<<set $PC.sisters += 1>>
<</if>>
<</for>>
<<if _pcMomFound = 0 && $PC.mother > 0>>
<<if _pcMomFound == 0 && $PC.mother > 0>>
<<set _lostMom = $PC.mother>>
<<set $PC.mother = $missingParentId>>
<<for _i = 0; _i < $slaves.length; _i++>>
......@@ -76,7 +76,7 @@
<</for>>
<<set $missingParentId-->>
<</if>>
<<if _pcDadFound = 0 && $PC.father > 0>>
<<if _pcDadFound == 0 && $PC.father > 0>>
<<set _lostDad = $PC.father>>
<<set $PC.father = $missingParentId>>
<<for _i = 0; _i < $slaves.length; _i++>>
......@@ -96,7 +96,7 @@
<<set _slaveDadFound = 1>>
<</if>>
<</for>>
<<if _slaveMomFound = 0 && $slaves[_i].mother > 0>>
<<if _slaveMomFound == 0 && $slaves[_i].mother > 0>>
<<set _lostMom = $slaves[_i].mother>>
<<set $slaves[_i].mother = $missingParentId>>
<<for _j = 0; _j < $slaves.length; _j++>>
......@@ -106,7 +106,7 @@
<</for>>
<<set $missingParentId-->>
<</if>>
<<if _slaveDadFound = 0 && $slaves[_i].father > 0>>
<<if _slaveDadFound == 0 && $slaves[_i].father > 0>>
<<set _lostDad = $slaves[_i].father>>
<<set $slaves[_i].father = $missingParentId>>
<<for _j = 0; _j < $slaves.length; _j++>>
......
This diff is collapsed.
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