Skip to content
Snippets Groups Projects
Commit 512dde8c authored by corncobman21's avatar corncobman21
Browse files

Fix for custom slave voice not setting correctly

parent 0903cdc9
No related branches found
No related tags found
No related merge requests found
...@@ -80,8 +80,10 @@ ...@@ -80,8 +80,10 @@
<<if $customSlave.analVirgin == 0>> <<if $customSlave.analVirgin == 0>>
<<set $activeSlave.anus = $customSlave.analVirgin>> <<set $activeSlave.anus = $customSlave.analVirgin>>
<</if>> <</if>>
<<if $customSlave.voice != -1>> <<if def $customSlave.voice && $customSlave.voice != -1>>
<<set $activeSlave.voice = $customSlave.voice>> <<set $activeSlave.voice = $customSlave.voice>>
<<else>>
<<set $activeSlave.voice = random(0,3)>>
<</if>> <</if>>
<<set $activeSlave.health = $customSlave.health>> <<set $activeSlave.health = $customSlave.health>>
<<set $activeSlave.muscles = $customSlave.muscles>> <<set $activeSlave.muscles = $customSlave.muscles>>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment