From 52cab921a9bee308a2b7085e2a1fa65bffba3d85 Mon Sep 17 00:00:00 2001 From: Trinidad <anchaiscastilla@gmail.com> Date: Fri, 21 Jul 2023 18:28:46 +0200 Subject: [PATCH] modified: src/endWeek/reports/personalAttention.js modified: src/endWeek/saPleaseYou.js --- src/endWeek/reports/personalAttention.js | 2 -- src/endWeek/saPleaseYou.js | 8 ++++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/endWeek/reports/personalAttention.js b/src/endWeek/reports/personalAttention.js index 86c9cf7d934..58b7a91b886 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 62d277b4630..a90b6c2f87c 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.`); -- GitLab