diff --git a/src/npc/descriptions/descriptionWidgets.js b/src/npc/descriptions/descriptionWidgets.js
index fa0da8a7f21bae215aa3c3bf0aac65e9d6c79903..d435376f0c5596aa9c506d1ac1317436c876d9d0 100644
--- a/src/npc/descriptions/descriptionWidgets.js
+++ b/src/npc/descriptions/descriptionWidgets.js
@@ -841,12 +841,12 @@ App.Desc.limbs = function(slave) {
 	*/
 
 	if (isAmputee(slave)) {
-		r += `${He} is a quadruple amputee and has not been equipped with prosthetics`;
+		r += `${He} is a quadruple amputee and has not been equipped with prosthetics.`;
 	} else if (getLeftArmID(slave) === getRightArmID(slave) &&
 		getLeftArmID(slave) === getLeftLegID(slave) &&
 		getLeftArmID(slave) === getRightLegID(slave)) {
 		if (getLeftArmID(slave) !== 1) {
-			r += `${He} has ${idToDescription(getLeftArmID(slave))} limbs`;
+			r += `${He} has ${idToDescription(getLeftArmID(slave))} limbs.`;
 		}
 	} else {
 		if (!hasAnyArms(slave)) {
@@ -866,25 +866,23 @@ App.Desc.limbs = function(slave) {
 		}
 		r += ` and `;
 		if (!hasAnyLegs(slave)) {
-			r += `both of ${his} legs have been amputated`;
+			r += `both of ${his} legs have been amputated.`;
 		} else if (!hasBothLegs(slave)) {
 			if (hasLeftLeg(slave)) {
-				r += `${he} has ${addA(idToDescription(getLeftLegID(slave)))} left leg, but ${his} right has been amputated`;
+				r += `${he} has ${addA(idToDescription(getLeftLegID(slave)))} left leg, but ${his} right has been amputated.`;
 			} else {
-				r += `${he} has ${addA(idToDescription(getRightLegID(slave)))} right leg, but ${his} left has been amputated`;
+				r += `${he} has ${addA(idToDescription(getRightLegID(slave)))} right leg, but ${his} left has been amputated.`;
 			}
 		} else {
 			if (getLeftLegID(slave) === getRightLegID(slave)) {
-				r += `${he} has ${idToDescription(getLeftLegID(slave))} legs`;
+				r += `${he} has ${idToDescription(getLeftLegID(slave))} legs.`;
 			} else {
-				r += `${he} has ${addA(idToDescription(getRightLegID(slave)))} right leg, but ${addA(idToDescription(getLeftLegID(slave)))} left leg`;
+				r += `${he} has ${addA(idToDescription(getRightLegID(slave)))} right leg, but ${addA(idToDescription(getLeftLegID(slave)))} left leg.`;
 			}
 		}
 	}
 
-	if (r !== "") {
-		return r + `. `;
-	}
+	return r;
 	/*
 	if (slave.am p) {
 		if (slave.am p === -1) {