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

Tweak checks in recETS.tw

parent 82ce6613
No related branches found
No related tags found
1 merge request!8780Let skillIncrease handle career experience properly
...@@ -732,8 +732,8 @@ ...@@ -732,8 +732,8 @@
<<set _slave.career = "a student">> <<set _slave.career = "a student">>
<<set _slave.actualAge -= 18>> <<set _slave.actualAge -= 18>>
<<if _slave.actualAge > 20>> <<if _slave.actualAge > 20>>
<<if $potencyAge >= $minimumSlaveAge>> <<if $fertilityAge >= $minimumSlaveAge>>
<<set _slave.actualAge = random($potencyAge, 20)>> <<set _slave.actualAge = random($fertilityAge, 20)>>
<<else>> <<else>>
<<set _slave.actualAge = random($minimumSlaveAge, 20)>> <<set _slave.actualAge = random($minimumSlaveAge, 20)>>
<</if>> <</if>>
...@@ -897,8 +897,8 @@ ...@@ -897,8 +897,8 @@
<<set _slave.career = "a student">> <<set _slave.career = "a student">>
<<set _slave.actualAge -= 18>> <<set _slave.actualAge -= 18>>
<<if _slave.actualAge > 20>> <<if _slave.actualAge > 20>>
<<if $potencyAge >= $minimumSlaveAge>> <<if $fertilityAge >= $minimumSlaveAge>>
<<set _slave.actualAge = random($potencyAge, 20)>> <<set _slave.actualAge = random($fertilityAge, 20)>>
<<else>> <<else>>
<<set _slave.actualAge = random($minimumSlaveAge, 20)>> <<set _slave.actualAge = random($minimumSlaveAge, 20)>>
<</if>> <</if>>
......
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