diff --git a/src/endWeek/reports/personalAttention.js b/src/endWeek/reports/personalAttention.js index 86c9cf7d9346d1f3301f3399dfb866dfaef6e22b..58b7a91b886c84f37bcc1cb1a0eb2bf7c0045e4c 100644 --- a/src/endWeek/reports/personalAttention.js +++ b/src/endWeek/reports/personalAttention.js @@ -2447,7 +2447,6 @@ App.PersonalAttention.slaveReport = function(slave) { healthDamage(V.PC, 5); if (V.PC.vagina === 0) { V.PC.vagina++; - r.push(`<span class="virginity loss">You are no longer a virgin.</span>`); } else if (V.PC.newVag === 0) { if (V.PC.vagina === 1) { r.push(`You're defintely`); @@ -2471,7 +2470,6 @@ App.PersonalAttention.slaveReport = function(slave) { } } else if (V.PC.vagina === 0) { V.PC.vagina++; - r.push(`<span class="virginity loss">You are no longer a virgin.</span>`); } tryKnockMeUp(V.PC, 100, 0, slave); let fuckCount = random(35, 56); diff --git a/src/endWeek/saPleaseYou.js b/src/endWeek/saPleaseYou.js index 62d277b46304a2843a7a900d429785f3b6279c58..a90b6c2f87cc920e01c718ac21662b5a1ff7b314 100644 --- a/src/endWeek/saPleaseYou.js +++ b/src/endWeek/saPleaseYou.js @@ -47,7 +47,7 @@ App.SlaveAssignment.pleaseYou = function saPleaseYou(slave) { useBoobs(slave); break; case "dick": - if (V.PC.vagina < 1 || V.PC.anus === 0) { + if (V.PC.vagina < 1 && V.PC.anus === 0) { useDickVirgin(slave); } else { useDick(slave); @@ -1085,13 +1085,13 @@ App.SlaveAssignment.pleaseYou = function saPleaseYou(slave) { r.push(`reluctantly accepting your use of ${his} dick.`); } else if (slave.fetishKnown === 1 && slave.fetish === Fetish.SUBMISSIVE) { r.push(`as your adoring submissive, seeing to your pleasure with ${his} shaft.`); - } else if (slave.devotion <= 50 && V.PC.vagina !== -1) { + } else if (slave.devotion <= 50 && V.PC.vagina > 0) { r.push(`obediently serving you in the classical way, driving into your womanhood.`); } else if (slave.devotion <= 50) { r.push(`week obediently serving you by driving into your backdoor.`); - } else if (V.PC.vagina !== -1 && (slave.career === "a breeding bull" || (slave.fetishKnown === 1) && (slave.fetish === "pregnancy"))) { + } else if (V.PC.vagina > 0 && (slave.career === "a breeding bull" || (slave.fetishKnown === 1) && (slave.fetish === "pregnancy"))) { r.push(`eagerly driving ${his} cock into your pussy, thoroughly enjoying fucking pussy bareback and cumming deep inside.`); - } else if (V.PC.vagina !== -1) { + } else if (V.PC.vagina > 0) { r.push(`serving you in the classical way, warming your bed and lovingly driving ${his} shaft into your womanhood.`); } else { r.push(`serving you in the classical way, warming your bed and lovingly driving ${his} shaft into your backdoor.`);