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

fixes and REFI

parent eace7261
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,11 @@
4/16/2018
56
-fixes
-added Deepmurk's cybersuit
-comes with vectors
55
-fixes
-more code optimizations
......
......@@ -393,14 +393,13 @@ It seems she passed by while you were drinking from $subSlave.slaveName and foun
<<case "submissive">>
<<set _refi = $slaveIndices[$subID]>>
<<if ($slaves[_refi].vagina > -1) && ($slaves[_refi].vaginalAccessory != "chastity belt")>>
<<set $slaves[_refi].vaginalCount += 1>>
<<set $vaginalTotal += 1>>
<<if canDoVaginal($slaves[_refi]) && ($slaves[_refi].vagina > 0)>>
<<set $slaves[_refi].vaginalCount++, $vaginalTotal++>>
<<else>>
<<set $slaves[_refi].analCount += 1>>
<<set $analTotal += 1>>
<<set $slaves[_refi].analCount++, $analTotal++>>
<</if>>
<<set $subSlave = $slaves[_refi]>>
<<set _subBelly = bellyAdjective($subSlave)>>
/* 000-250-006 */
<<if $seeImages == 1>>
......
......@@ -211,10 +211,10 @@
<<set $cumslutID = $slaves[$i].ID>>
<</if>>
<<elseif ($slaves[$i].fetish == "submissive")>>
<<if ($slaves[$i].anus > 0)>>
<<if ($subID == 0)>>
<<set $subID = $slaves[$i].ID>>
<</if>>
<<if ($slaves[$i].anus > 0 && canDoAnal($slaves[$i])) || ($slaves[$i].vagina > 0 && canDoVaginal($slaves[$i]))>>
<<set $subID = $slaves[$i].ID>>
<</if>>
<</if>>
<<elseif ($slaves[$i].fetish == "humiliation")>>
<<if ($slaves[$i].anus > 0)>>
......
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