From 3d37accfd630b489ecf580c33d7b517a31ae4ec4 Mon Sep 17 00:00:00 2001 From: Anu <anulithic@gmail.com> Date: Mon, 20 Jun 2022 23:33:17 -0700 Subject: [PATCH] Fix "overs" --- devNotes/legacy files/bellyInflation.js | 2 +- src/endWeek/saServeYourOtherSlaves.js | 2 +- src/npc/descriptions/belly/belly.js | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/devNotes/legacy files/bellyInflation.js b/devNotes/legacy files/bellyInflation.js index 516e8b3226e..154a759219c 100644 --- a/devNotes/legacy files/bellyInflation.js +++ b/devNotes/legacy files/bellyInflation.js @@ -636,7 +636,7 @@ App.Desc.bellyInflation = function(slave, {market, eventDescription} = {}) { r.push(`${slave.slaveName}'s tight leotard shows off every movement within ${his} jiggling ${slave.inflationType}-filled belly. The material tightly clings to ${his} popped navel.`); break; case "a monokini": - r.push(`${slave.slaveName}'s monokini overs only half of ${his} jiggling ${slave.inflationType}-filled belly.`); + r.push(`${slave.slaveName}'s monokini covers only half of ${his} jiggling ${slave.inflationType}-filled belly.`); break; case "overalls": if (slave.boobs > (slave.belly + 250)) { diff --git a/src/endWeek/saServeYourOtherSlaves.js b/src/endWeek/saServeYourOtherSlaves.js index 0a9250478c9..3cd1fb74e31 100644 --- a/src/endWeek/saServeYourOtherSlaves.js +++ b/src/endWeek/saServeYourOtherSlaves.js @@ -826,7 +826,7 @@ App.SlaveAssignment.serveYourOtherSlaves = function saServeYourOtherSlaves(slave domSlave.fetishKnown = 1; } stimulateSlaveProstate(slave, domSlave); - r.push(`to force ${him} to climax so ${domName} can plant ${his2} ${domRace} lips overs ${subName}'s ${subRace}`); + r.push(`to force ${him} to climax so ${domName} can plant ${his2} ${domRace} lips over ${subName}'s ${subRace}`); if (slave.vagina >= 0) { r.push(`urethra`); } else { diff --git a/src/npc/descriptions/belly/belly.js b/src/npc/descriptions/belly/belly.js index 0c6256017e7..1eb9161eb2f 100644 --- a/src/npc/descriptions/belly/belly.js +++ b/src/npc/descriptions/belly/belly.js @@ -7742,21 +7742,21 @@ App.Desc.belly = function(slave, descType = DescType.NORMAL) { if (slave.bellyAccessory === "a huge empathy belly") { r.push(`${slave.slaveName}'s monokini shows off the curvature of ${his} big pregnant belly. The swimsuit has been pushed down to just above ${his} popped navel.`); } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monokini overs less than half of ${his} jiggling ${slave.inflationType}-filled belly.`); + r.push(`${slave.slaveName}'s monokini covers less than half of ${his} jiggling ${slave.inflationType}-filled belly.`); } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monokini overs less than half of ${his} implant-filled belly.`); + r.push(`${slave.slaveName}'s monokini covers less than half of ${his} implant-filled belly.`); } else { r.push(`${slave.slaveName}'s monokini shows off every kick and movement within ${his} big pregnant belly. The swimsuit has been pushed down to just above ${his} popped navel.`); } } else if (slave.belly >= 10000 || (slave.bellyAccessory === "a large empathy belly")) { if (slave.bellyAccessory === "a large empathy belly") { - r.push(`${slave.slaveName}'s monokini overs only half of ${his} pregnant belly.`); + r.push(`${slave.slaveName}'s monokini covers only half of ${his} pregnant belly.`); } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s monokini overs only half of ${his} jiggling ${slave.inflationType}-filled belly.`); + r.push(`${slave.slaveName}'s monokini covers only half of ${his} jiggling ${slave.inflationType}-filled belly.`); } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s monokini overs only half of ${his} implant-filled belly.`); + r.push(`${slave.slaveName}'s monokini covers only half of ${his} implant-filled belly.`); } else { - r.push(`${slave.slaveName}'s monokini overs only half of ${his} pregnant belly.`); + r.push(`${slave.slaveName}'s monokini covers only half of ${his} pregnant belly.`); } } else if (slave.weight > 160) { r.push(`${slave.slaveName}'s monokini tightly clings to ${his} hugely fat belly, clearly displaying every fold, roll and motion in its mass.`); -- GitLab