Skip to content
Snippets Groups Projects
Commit d148475d authored by lowercasedonkey's avatar lowercasedonkey
Browse files

fix

fix
parent c9f40b95
No related branches found
No related tags found
No related merge requests found
...@@ -524,21 +524,21 @@ ...@@ -524,21 +524,21 @@
/* Acquisition Events */ /* Acquisition Events */
<<set $events.push("RE recruit")>> /* one generic recruit event guaranteed to always be possible */ <<set $events.push("RE recruit")>> /* one generic recruit event guaranteed to always be possible */
<<if (random(1,100) < $rep/200 || $cheatMode)>> <<if (random(1,100) < $rep/200) || $cheatMode>>
<<set _recruitEvents.push("RE recruit")>> <<set _recruitEvents.push("RE recruit")>>
<</if>> <</if>>
<<if $ProRecruitment == 1>> <<if $ProRecruitment == 1>>
<<if (random(1,100) < $rep/200 || $cheatMode)>> <<if (random(1,100) < $rep/200) || $cheatMode>>
<<set _recruitEvents.push("RE recruit")>> <<set _recruitEvents.push("RE recruit")>>
<</if>> <</if>>
<</if>> <</if>>
<<if $AntiEnslavementRep == 0>> <<if $AntiEnslavementRep == 0>>
<<if (random(1,100) < $rep/300 || $cheatMode)>> <<if (random(1,100) < $rep/300) || $cheatMode>>
<<set _recruitEvents.push("RE recruit")>> <<set _recruitEvents.push("RE recruit")>>
<</if>> <</if>>
<</if>> <</if>>
<<if $AntiEnslavementCash == 0>> <<if $AntiEnslavementCash == 0>>
<<if (random(1,100) < $rep/300 || $cheatMode)>> <<if (random(1,100) < $rep/300) || $cheatMode>>
<<set _recruitEvents.push("RE recruit")>> <<set _recruitEvents.push("RE recruit")>>
<</if>> <</if>>
<</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