diff --git a/src/js/descriptionWidgets.js b/src/js/descriptionWidgets.js index 915ba3fc73ff8870016ef5a5ece00627de379e46..14a4c96291604d6e7cf5f0a80a05d6d48f2c03ae 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>`;