From 5679a934ce4c9c39420b6a3d884bd708239e2aed Mon Sep 17 00:00:00 2001 From: Blank <blank@national.shitposting.agency> Date: Tue, 14 Apr 2020 17:20:01 +1200 Subject: [PATCH] Commit 0 --- src/js/descriptionWidgets.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/js/descriptionWidgets.js b/src/js/descriptionWidgets.js index 915ba3fc73f..14a4c962916 100644 --- a/src/js/descriptionWidgets.js +++ b/src/js/descriptionWidgets.js @@ -392,15 +392,15 @@ App.Desc.ageAndHealth = function(slave) { if (!slave.fuckdoll) { if (H.health < -90) { r += `${He} is nearly unresponsive and obviously <span class="red">dangerously unhealthy.</span>`; - } else if (H.health < -50) { + } else if (H.condition < -50) { r += `${He} is <span class="red">very unhealthy.</span>`; - } else if (H.health < -20) { + } else if (H.condition < -20) { r += `${He} is <span class="red">unhealthy.</span>`; - } else if (H.health <= 20) { + } else if (H.condition <= 20) { r += `${He} is in <span class="yellow">fair health.</span>`; - } else if (H.health <= 50) { + } else if (H.condition <= 50) { r += `${He} seems to be in <span class="green">good health.</span>`; - } else if (H.health <= 90) { + } else if (H.condition <= 90) { r += `${He} seems to be in <span class="green">great health.</span>`; } else { r += `${He} almost gleams; ${he}'s in the absolute <span class="green">best of health.</span>`; -- GitLab