From d76601d45ada36b63c43d58cd800b488c197ab2f Mon Sep 17 00:00:00 2001
From: lowercase-donkey <lowercasedonkey@gmail.com>
Date: Thu, 1 Aug 2019 01:01:40 -0400
Subject: [PATCH] fix double period

---
 src/js/descriptionWidgets.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/js/descriptionWidgets.js b/src/js/descriptionWidgets.js
index 41657971bca..759d7f0df17 100644
--- a/src/js/descriptionWidgets.js
+++ b/src/js/descriptionWidgets.js
@@ -1020,11 +1020,11 @@ 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)) {
-		r += `${He} has ` + idToDescription(getLeftArmID(slave)) + ` limbs.`;
+		r += `${He} has ` + idToDescription(getLeftArmID(slave)) + ` limbs`;
 	} else {
 		if (!hasAnyArms(slave)) {
 			r += `Both of ${his} arms have been amputated`;
-- 
GitLab