Skip to content
Snippets Groups Projects
Commit c86ef620 authored by svornost's avatar svornost
Browse files

Tighten the age requirements for siblings from relative recruiter so we always...

Tighten the age requirements for siblings from relative recruiter so we always have a reasonable age gap on non-twin siblings
parent 80795486
No related branches found
No related tags found
No related merge requests found
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
<<set _tempMF = "father">> <<set _tempMF = "father">>
<</if>> <</if>>
<<if ($eventSlave.sisters < 3)>> <<if ($eventSlave.sisters < 3)>>
<<if $activeSlave.actualAge <= ($retirementAge-1)>> <<if $activeSlave.actualAge < ($retirementAge-1)>>
<<if $seeDicks != 100>> <<if $seeDicks != 100>>
<<set _recruitedType.push("older sister")>> <<set _recruitedType.push("older sister")>>
<<set _recruitedType.push("older sister")>> <<set _recruitedType.push("older sister")>>
...@@ -67,7 +67,7 @@ ...@@ -67,7 +67,7 @@
<<set _recruitedType.push("older brother")>> <<set _recruitedType.push("older brother")>>
<</if>> <</if>>
<</if>> <</if>>
<<if $activeSlave.actualAge >= ($minimumSlaveAge+1)>> <<if $activeSlave.actualAge > ($minimumSlaveAge+1)>>
<<if $seeDicks != 100>> <<if $seeDicks != 100>>
<<set _recruitedType.push("younger sister")>> <<set _recruitedType.push("younger sister")>>
<<set _recruitedType.push("younger sister")>> <<set _recruitedType.push("younger sister")>>
......
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