From ca3ac999d76cf9019a909b551df4baf8d142e69d Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Fri, 30 Oct 2020 14:42:59 -0400 Subject: [PATCH] spaces --- src/endWeek/economics/personalNotes.js | 2 +- src/endWeek/saChoosesOwnJob.js | 2 +- src/npc/descriptions/belly/belly.js | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/endWeek/economics/personalNotes.js b/src/endWeek/economics/personalNotes.js index 1d41d9d6cad..b14c662e194 100644 --- a/src/endWeek/economics/personalNotes.js +++ b/src/endWeek/economics/personalNotes.js @@ -32,7 +32,7 @@ App.EndWeek.personalNotes = function() { if (V.PC.rules.lactation === "sell") { /* watch this be a disaster */ milk = milkAmount(V.PC); - r.push(`Whenever you have a free moment and a chest swollen with milk, you spend your time attached to the nearest milker. As a result, you produce${milk} liters of sellable milk over the week.`); + r.push(`Whenever you have a free moment and a chest swollen with milk, you spend your time attached to the nearest milker. As a result, you produce ${milk} liters of sellable milk over the week.`); if (V.arcologies[0].FSPastoralist !== "unset") { if (V.arcologies[0].FSPastoralistLaw === 1) { milkSale = milk * (28 + Math.trunc(V.arcologies[0].FSPastoralist / 30)); diff --git a/src/endWeek/saChoosesOwnJob.js b/src/endWeek/saChoosesOwnJob.js index f77cecf7efd..f59353abde4 100644 --- a/src/endWeek/saChoosesOwnJob.js +++ b/src/endWeek/saChoosesOwnJob.js @@ -88,7 +88,7 @@ App.SlaveAssignment.choosesOwnJob = (function() { slave.devotion -= 5; } else if (slave.health.illness > 1) { if (V.universalRulesAssignsSelfFacility === 1 && V.clinic > clinicL) { - choice.push(`is ill, so ${he} decides to get treatment at${V.clinicName}.`); + choice.push(`is ill, so ${he} decides to get treatment at ${V.clinicName}.`); choice.push(assignJob(slave, "get treatment in the clinic")); } else { choice.push(`is ill, so ${he} decides to rest.`); diff --git a/src/npc/descriptions/belly/belly.js b/src/npc/descriptions/belly/belly.js index 4d0e4ec15f9..662f911cc77 100644 --- a/src/npc/descriptions/belly/belly.js +++ b/src/npc/descriptions/belly/belly.js @@ -7485,7 +7485,7 @@ App.Desc.belly = function(slave, {market, eventDescription} = {}) { } else if (slave.bellyImplant > 0) { r.push(`${slave.slaveName}'s armor is specially tailored to fit such an absurdly gravid ${girl}. It just barely shows a hint of ${his} titanic implant-filled belly underneath the ultra-heavy armor.`); } else { - r.push(`${slave.slaveName}'s armor is specially tailored to fit such an absurdly gravid ${girl}. It just barely shows a hint of ${his} titanic pregnant belly${him} underneath the ultra-heavy armor.`); + r.push(`${slave.slaveName}'s armor is specially tailored to fit such an absurdly gravid ${girl}. It just barely shows a hint of ${his} titanic pregnant belly ${him} underneath the ultra-heavy armor.`); } } else if (slave.belly >= 450000) { if (isBellyFluidLargest) { @@ -12261,7 +12261,7 @@ App.Desc.belly = function(slave, {market, eventDescription} = {}) { } else if (slave.bellyImplant > 0) { r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} hugely gravid stomach. It clearly displays ${his} giant implant-filled belly through the skintight material.`); } else { - r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} hugely gravid stomach. It clearly displays${his} giant pregnant belly through the skintight material.`); + r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} hugely gravid stomach. It clearly displays ${his} giant pregnant belly through the skintight material.`); } } else if (slave.belly >= 30000) { if (isBellyFluidLargest) { @@ -12311,13 +12311,13 @@ App.Desc.belly = function(slave, {market, eventDescription} = {}) { r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} fat belly, clearly showing every fold and roll through the skintight material.`); } else if (slave.belly >= 1500 || slave.bellyAccessory === "a small empathy belly") { if (slave.bellyAccessory === "a small empathy belly") { - r.push(`${slave.slaveName}'s bodysuit clearly displays${his} small pregnant belly through the skintight material.`); + r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} small pregnant belly through the skintight material.`); } else if (isBellyFluidLargest) { - r.push(`${slave.slaveName}'s bodysuit clearly displays${his} ${slave.inflationType}-swollen belly.`); + r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} ${slave.inflationType}-swollen belly.`); } else if (slave.bellyImplant > 0) { - r.push(`${slave.slaveName}'s bodysuit clearly displays${his} implant-rounded belly through the skintight material.`); + r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} implant-rounded belly through the skintight material.`); } else { - r.push(`${slave.slaveName}'s bodysuit clearly displays${his} growing belly through the skintight material.`); + r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} growing belly through the skintight material.`); } } else if (slave.weight > 30) { r.push(`${slave.slaveName}'s bodysuit clearly displays ${his} chubby belly underneath the skintight material.`); -- GitLab