From 40c8f53abd632c0e03364481dd51ff998fd80ef3 Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Tue, 9 Feb 2021 14:02:27 -0800 Subject: [PATCH] Fix trailing space --- src/npc/descriptions/belly/belly.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/npc/descriptions/belly/belly.js b/src/npc/descriptions/belly/belly.js index 1c8e5afeb7c..ece6851274c 100644 --- a/src/npc/descriptions/belly/belly.js +++ b/src/npc/descriptions/belly/belly.js @@ -12344,7 +12344,7 @@ App.Desc.belly = function(slave, {market, eventDescription} = {}) { } else if (slave.weight > 160) { r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} hugely fat belly. Every crease, fold, roll and motion is clearly visible within it.`); } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} big fat belly. Every crease, fold and roll is clearly visible within it.`); + r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} big fat belly. Every crease, fold and roll is clearly visible within it.`); } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { if (slave.bellyAccessory === "a medium empathy belly") { r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} pregnant belly. ${His} popped navel prominently pokes through the front of ${his} dress.`); -- GitLab