From 5378402860d23c8aaeea2743ddb40990765b8c2f Mon Sep 17 00:00:00 2001
From: Anu <barrychahal@gmail.com>
Date: Sun, 2 Aug 2020 02:14:24 -0700
Subject: [PATCH] Update longChildDescription.js

---
 .../nursery/widgets/children/longChildDescription.js      | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/facilities/nursery/widgets/children/longChildDescription.js b/src/facilities/nursery/widgets/children/longChildDescription.js
index 450353465b8..f5ba13a1e2d 100644
--- a/src/facilities/nursery/widgets/children/longChildDescription.js
+++ b/src/facilities/nursery/widgets/children/longChildDescription.js
@@ -7590,25 +7590,25 @@ App.Facilities.Nursery.LongChildDescription = function(child, {market = 0, event
 	if (child.muscles > 95) {
 		r += `<span class="pink">extremely muscular,</span> with defined pecs, powerful glutes, and massive traps`;
 		if (child.weight > 95) {
-			r += ` hidden beneath a layer of fat`;
+			r += ` hidden beneath a layer of fat.`;
 		}
 		r += `. `;
 	} else if (child.muscles > 50) {
 		r += `<span class="pink">quite muscular,</span> with ripped abs, strong shoulders, and defined lats`;
 		if (child.weight > 95) {
-			r += ` hidden beneath a layer of fat`;
+			r += ` hidden beneath a layer of fat.`;
 		}
 		r += `. `;
 	} else if (child.muscles > 30) {
 		r += `<span class="pink">well built,</span> yet feminine with defined abs and strong shapely muscles`;
 		if (child.weight > 95) {
-			r += ` hidden beneath a layer of fat`;
+			r += ` hidden beneath a layer of fat.`;
 		}
 		r += `. `;
 	} else if (child.muscles > 5) {
 		r += `<span class="pink">well built,</span> yet feminine, with just-visible muscles`;
 		if (child.weight > 30) {
-			r += ` hidden beneath a layer of fat`;
+			r += ` hidden beneath a layer of fat.`;
 		}
 		r += `. `;
 	} else if (child.muscles >= -5) {
-- 
GitLab