From 2d6ab1ea0a5952d9fccf3ee090a37ec86b0ca48f Mon Sep 17 00:00:00 2001
From: Anu <barrychahal@gmail.com>
Date: Sat, 26 Sep 2020 16:39:14 -0700
Subject: [PATCH] Extend health display limits to not vanish when
 slave.health.health > 100

---
 js/003-data/slaveSummaryData.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/js/003-data/slaveSummaryData.js b/js/003-data/slaveSummaryData.js
index e64887aaac9..b5654b6c0c4 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: {
-- 
GitLab