diff --git a/src/facilities/nursery/widgets/children/longChildDescription.js b/src/facilities/nursery/widgets/children/longChildDescription.js
index 450353465b8c4f5e4969c136c4f78de75959b799..f5ba13a1e2d8f339efe65e4d8ac3f80150132d03 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) {
diff --git a/src/npc/descriptions/dimensions.js b/src/npc/descriptions/dimensions.js
index 6a5a25208ba98965e4637b38701fed034c7f7c23..669f9deaf678d8e30efde9c67e74d0c5ddd3b828 100644
--- a/src/npc/descriptions/dimensions.js
+++ b/src/npc/descriptions/dimensions.js
@@ -238,28 +238,28 @@ App.Desc.dimensions = function(slave) {
 		if (slave.muscles > 95) {
 			r.push(`<span class="pink">extremely muscular,</span> with defined pecs, powerful glutes, and massive`);
 			if (slave.weight > 95) {
-				r.push(`traps hidden beneath a layer of fat`);
+				r.push(`traps hidden beneath a layer of fat.`);
 			} else {
 				r.push(`traps.`);
 			}
 		} else if (slave.muscles > 50) {
 			r.push(`<span class="pink">quite muscular,</span> with ripped abs, strong shoulders, and defined`);
 			if (slave.weight > 95) {
-				r.push(`lats hidden beneath a layer of fat`);
+				r.push(`lats hidden beneath a layer of fat.`);
 			} else {
 				r.push(`lats.`);
 			}
 		} else if (slave.muscles > 30) {
 			r.push(`<span class="pink">well built,</span> yet feminine with defined abs and strong shapely`);
 			if (slave.weight > 95) {
-				r.push(`muscles hidden beneath a layer of fat`);
+				r.push(`muscles hidden beneath a layer of fat.`);
 			} else {
 				r.push(`muscles.`);
 			}
 		} else if (slave.muscles > 5) {
 			r.push(`<span class="pink">well built,</span> yet feminine, with just-visible`);
 			if (slave.weight > 30) {
-				r.push(`muscles hidden beneath a layer of fat`);
+				r.push(`muscles hidden beneath a layer of fat.`);
 			} else {
 				r.push(`muscles.`);
 			}