diff --git a/src/endWeek/saServant.js b/src/endWeek/saServant.js index e1d2ee9da976bd330988da5d899d919df48918ec..7cd10dfe2d6f67af2a4acc495588290770121645 100644 --- a/src/endWeek/saServant.js +++ b/src/endWeek/saServant.js @@ -64,27 +64,27 @@ window.saServant = function saServant(slave) { } if (slave.health.illness > 0 || slave.health.tired > 50) { - r += ` ${He} performed worse this week due to`; + t += ` ${He} performed worse this week due to`; if (slave.health.illness === 1) { - r += ` feeling under the weather`; + t += ` feeling under the weather`; } else if (slave.health.illness === 2) { - r += ` a minor illness`; + t += ` a minor illness`; } else if (slave.health.illness === 3) { - r += ` being sick`; + t += ` being sick`; } else if (slave.health.illness === 4) { - r += ` being very sick`; + t += ` being very sick`; } else if (slave.health.illness === 5) { - r += ` a terrible illness`; + t += ` a terrible illness`; } if (slave.health.illness > 0 && slave.health.tired > 50) { - r += ` and`; + t += ` and`; } if (slave.health.tired < 80) { - r += ` being tired`; + t += ` being tired`; } else { - r += ` exhaustion`; + t += ` exhaustion`; } - r += `.`; + t += `.`; } // TODO: this flat unchecked oral sex is a bit problematic