From a2a6618767716425cf92b8fe9f337245aa790ac1 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Thu, 11 Jun 2020 20:30:45 -0400 Subject: [PATCH] desc baby fix --- src/npc/descriptions/belly/belly.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/npc/descriptions/belly/belly.js b/src/npc/descriptions/belly/belly.js index 0a582ac37d8..f03fdb87d53 100644 --- a/src/npc/descriptions/belly/belly.js +++ b/src/npc/descriptions/belly/belly.js @@ -558,16 +558,16 @@ App.Desc.belly = function(slave) { if (slave.belly >= 10000) { r.push(`It has a heavy bell dangling from it.`); if (slave.bellyPreg >= 10000) { - r.push(`It sounds whenever ${his} bab`); + r.push(`It sounds whenever ${his}`); if (slave.pregType > 1) { - r.push(`ies`); + r.push(`babies`); if (slave.pregType > 10) { - r.push(`kick, which is often`); + r.push(`kick, which is often.`); } else { r.push(`kick.`); } } else { - r.push(`y kicks.`); + r.push(`baby kicks.`); } } } else if (slave.clothes === "slutty jewelry") { -- GitLab