From 28a24431e00a992a506feebb22e52f6ba0480853 Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Fri, 5 Jun 2020 13:42:34 -0700 Subject: [PATCH] Fix more things --- src/endWeek/saDrugs.js | 2 +- src/endWeek/saInflation.js | 4 ++-- src/interaction/main/walkPast.js | 2 +- src/npc/descriptions/crotch/dick.js | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/endWeek/saDrugs.js b/src/endWeek/saDrugs.js index d15f36e749a..37504c2890d 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 780937d0670..10ea153a130 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 8e0722e0e0f..a065abf550d 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 acf59b6fbbf..0a3b8a4268a 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.`); } -- GitLab