diff --git a/src/endWeek/saDrugs.js b/src/endWeek/saDrugs.js index d15f36e749a83eea054ba2162716394d124e24c6..37504c2890d44ddb7bb6b71bf6111128ff76a18b 100644 --- a/src/endWeek/saDrugs.js +++ b/src/endWeek/saDrugs.js @@ -978,7 +978,7 @@ App.SlaveAssignment.drugs = (function() { } // health issues if (jsRandom(1, 10) === 1 && growth !== 5) { - r += ` The stimulants stressed slave.slaveName's body more than expected, <span class="red">damaging ${his} health.</span>`; + r += ` The stimulants stressed ${slave.slaveName}'s body more than expected, <span class="red">damaging ${his} health.</span>`; healthDamage(slave, 10); } if (slave.physicalAge > V.maxGrowthAge) { diff --git a/src/endWeek/saInflation.js b/src/endWeek/saInflation.js index 780937d0670cf0dcd3cfdfa2c5018a7c3c4c3d38..10ea153a1306a13259732e9cccdc2f831144c523 100644 --- a/src/endWeek/saInflation.js +++ b/src/endWeek/saInflation.js @@ -69,7 +69,7 @@ App.SlaveAssignment.inflation = (function() { slave.inflationMethod = 0; SetBellySize(slave); } else if (slave.inflationType === "milk" && slave.inflationMethod === 3 && cow.lactation === 0) { - r.push(`${cow.slaveName} is no longer lactating and thus can no longer keep slave.slaveName filled with milk. <span class="yellow">${His} inflation regimen has been ended.</span>`); + r.push(`${cow.slaveName} is no longer lactating and thus can no longer keep ${slave.slaveName} filled with milk. <span class="yellow">${His} inflation regimen has been ended.</span>`); slave.inflation = 0; slave.inflationType = "none"; slave.inflationMethod = 0; @@ -82,7 +82,7 @@ App.SlaveAssignment.inflation = (function() { slave.inflationMethod = 0; SetBellySize(slave); } else if (slave.inflationType === "cum" && slave.inflationMethod === 3 && cow.balls === 0) { - r.push(`${cow.slaveName} no longer has testicles and thus can no longer keep slave.slaveName filled with cum. <span class="yellow">${His} inflation regimen has been ended.</span>`); + r.push(`${cow.slaveName} no longer has testicles and thus can no longer keep ${slave.slaveName} filled with cum. <span class="yellow">${His} inflation regimen has been ended.</span>`); slave.inflation = 0; slave.inflationType = "none"; slave.inflationMethod = 0; diff --git a/src/interaction/main/walkPast.js b/src/interaction/main/walkPast.js index 8e0722e0e0f63b5c1b545e4ccfc6e603a0eaa88c..a065abf550d9de0b33c6ee0106c0c873d766be12 100644 --- a/src/interaction/main/walkPast.js +++ b/src/interaction/main/walkPast.js @@ -4550,7 +4550,7 @@ globalThis.walkPast = (function() { if (slave.boobs > (slave.belly+250)) { t += `${slave.slaveName}'s gigantic breasts push out ${his} overalls so far that ${his} huge implant-filled belly is left halfway uncovered.`; } else { - t += `The front of slave.slaveName's overalls barely covers half of ${his} huge implant-filled pregnant belly.`; + t += `The front of ${slave.slaveName}'s overalls barely covers half of ${his} huge implant-filled pregnant belly.`; } break; case "an apron": diff --git a/src/npc/descriptions/crotch/dick.js b/src/npc/descriptions/crotch/dick.js index acf59b6fbbf75404c8f422b001e39c482aa2446c..0a3b8a4268ab477d8f3eb5d794a3aa0c79f1e643 100644 --- a/src/npc/descriptions/crotch/dick.js +++ b/src/npc/descriptions/crotch/dick.js @@ -1516,7 +1516,7 @@ App.Desc.dick = function(slave) { } } if (slave.prostate > 2) { - r.push(`The area above ${his} crotch has a slight swell to it from ${his} prostate implant.A constant dribble of precum streams from the hole; ${his} artificially hyperactive prostate keeps ${him} that way.`); + r.push(`The area above ${his} crotch has a slight swell to it from ${his} prostate implant. A constant dribble of precum streams from the hole; ${his} artificially hyperactive prostate keeps ${him} that way.`); } else if ((slave.prostate > 1)) { r.push(`${He}'s got a string of precum dangling from the hole; ${his} artificially hyperactive prostate keeps ${him} that way.`); } @@ -1946,7 +1946,7 @@ App.Desc.dick = function(slave) { } } if (slave.prostate > 2) { - r.push(`The area above ${his} crotch has a slight swell to it from ${his} prostate implant.A constant dribble of precum streams from the hole and down ${his} testicles; ${his} artificially hyperactive prostate keeps ${him} that way.`); + r.push(`The area above ${his} crotch has a slight swell to it from ${his} prostate implant. A constant dribble of precum streams from the hole and down ${his} testicles; ${his} artificially hyperactive prostate keeps ${him} that way.`); } else if ((slave.prostate > 1)) { r.push(`${He}'s got a string of precum dangling from the hole and down ${his} testicles; ${his} artificially hyperactive prostate keeps ${him} that way.`); }