diff --git a/js/003-data/slaveSummaryData.js b/js/003-data/slaveSummaryData.js
index e64887aaac9dc3d9c5dc13f458fc9b0bba3ee5dd..b5654b6c0c4bb020b3e5b859bf3016fa83659552 100644
--- a/js/003-data/slaveSummaryData.js
+++ b/js/003-data/slaveSummaryData.js
@@ -547,7 +547,8 @@ App.Data.SlaveSummary = {
 				120: {desc: "healthy", style: "yellow"},
 				150: {desc: "Very healthy", style: "green"},
 				190: {desc: "Extremely healthy", style: "green"},
-				200: {desc: "Unnaturally healthy", style: "green"}
+				200: {desc: "Unnaturally healthy", style: "green"} //intended limit of 100 health
+				999: {desc: "Unnaturally healthy", style: "green"} //catch to display unintended cases of health > 100 instead of vanishing
 			},
 		},
 		prestige: {
diff --git a/src/npc/descriptions/longSlave.js b/src/npc/descriptions/longSlave.js
index f482f1c6cf8026fb02eb929864f8846273986cab..e346ec3936a8e68fec553d6eeb09f76ea0007496 100644
--- a/src/npc/descriptions/longSlave.js
+++ b/src/npc/descriptions/longSlave.js
@@ -200,7 +200,7 @@ App.Desc.longSlave = function(slave = V.activeSlave, {market = 0, eventDescripti
 				$(p).append(`${clinicNameCaps}'s scanners score long term carcinogenic buildup in ${his} body at `);
 				span = document.createElement('span');
 				span.className = "cyan";
-				span.textContent = `${Math.ceil(slave.chem / 10)}.`;
+				span.textContent = `${Math.ceil(slave.chem / 10)}. `;
 				p.append(span);
 			} else {
 				p.append(`${clinicNameCaps}'s scanners confirm that ${he} has good prospects for long term health. `);