diff --git a/src/js/extendedFamilyModeJS.tw b/src/js/extendedFamilyModeJS.tw index 34e0c6d660605e1974d27f56862420c2cc1fb88f..29aab10992026f75be937dc4448c286c795bb50c 100644 --- a/src/js/extendedFamilyModeJS.tw +++ b/src/js/extendedFamilyModeJS.tw @@ -20,7 +20,9 @@ window.sameMom = function(slave1, slave2){ // testtest catches the case if a mother is a father or a father a mother - thank you familyAnon, for this code window.sameTParent = function(slave1, slave2) { - if (slave1.mother == slave2.father && slave1.father == slave2.mother && slave1.mother != 0 && slave1.mother != -2 && slave1.father != 0 && slave1.father != -2 && slave1.mother != slave1.father) { + if (slave1.mother == -1 && slave1.father == 1 && slave2.mother == -1 && slave2.father == -1) { + return 1; + } else if (slave1.mother == slave2.father && slave1.father == slave2.mother && slave1.mother != 0 && slave1.mother != -2 && slave1.father != 0 && slave1.father != -2 && slave1.mother != slave1.father) { return 2; } else if ((slave1.mother == slave2.father || slave1.father == slave2.mother) && slave1.mother != 0 && slave1.mother != -2 && slave2.mother != 0 && slave2.mother != -2 && slave1.mother != slave1.father) { return 3; diff --git a/src/uncategorized/randomIndividualEvent.tw b/src/uncategorized/randomIndividualEvent.tw index dc897f6e8b6291d893f2a364140b4316937ed622..0f28191ac7ed37245e219fe7c11b3997c7468b3c 100644 --- a/src/uncategorized/randomIndividualEvent.tw +++ b/src/uncategorized/randomIndividualEvent.tw @@ -208,7 +208,8 @@ <<if ($eventSlave.devotion <= 50)>> <<if ["be a servant", "work as a servant"].includes($eventSlave.assignment)>> <<if canDoAnal($eventSlave) || canDoVaginal($eventSlave)>> - <<set $RESSevent.push("PA servant")>> + <<set $RESSevent.push("PA servant")>> + <</if>> <</if>> <<elseif ($eventSlave.trust > 75)>> <<if ($eventSlave.energy > 60)>> @@ -545,7 +546,7 @@ <</if>> <</if>> <<if ($cockFeeder > 0)>> - <<if ($eventSlave.dickAccessory != "chastity" && $eventSlave.dickAccessory != "combined chastity") || ($eventSlave.dick == 0)>> + <<if canPenetrate($eventSlave) || ($eventSlave.dick == 0)>> <<set $RESSevent.push("kitchen molestation")>> <</if>> <</if>>