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
1 merge request!6206Do not generate slaves that are already at retirement age.
...@@ -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.
Please register or to comment