From 8709943dbb488acfe7d01efae1b625902be17d99 Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Mon, 27 Jan 2020 20:41:06 -0500 Subject: [PATCH] lost classes line --- src/endWeek/healthFunctions.js | 2 +- src/endWeek/saTakeClasses.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/endWeek/healthFunctions.js b/src/endWeek/healthFunctions.js index f42dbdd9638..277e9e68a81 100644 --- a/src/endWeek/healthFunctions.js +++ b/src/endWeek/healthFunctions.js @@ -430,7 +430,7 @@ window.tired = function tired(slave) { if (slave.rules.living === "spare") { livingRules -= 2; // Barely reduce tiredness while sleeping in spare conditions if (V.dormitory < V.dormitoryPopulation) { - livingRules += 7; // Overcrowding penalty + livingRules += 8; // Overcrowding penalty } } else if (slave.rules.living === "luxurious") { livingRules -= 15; diff --git a/src/endWeek/saTakeClasses.js b/src/endWeek/saTakeClasses.js index e18ffc65c03..069a3719e9c 100644 --- a/src/endWeek/saTakeClasses.js +++ b/src/endWeek/saTakeClasses.js @@ -412,17 +412,17 @@ window.saTakeClasses = (function saServeThePublic() { if ((slave.skill.entertainment > 30) || (V.schoolroomUpgradeSkills === 0 && slave.skill.entertainment > 10)) { if ((slave.skill.anal > 30) || (V.schoolroomUpgradeSkills === 0 && slave.skill.anal > 10)) { if ((slave.skill.vaginal > 30) || (V.schoolroomUpgradeSkills === 0 && slave.skill.vaginal > 10) || (slave.vagina < 0)) { - r += ` <span class="noteworthy">`; + r += ` ${He} can learn little from further classes, <span class="noteworthy">`; if (V.assignmentRecords[slave.ID]) { let oldJob = V.assignmentRecords[slave.ID]; assignJobSafely(slave, oldJob); if (slave.choosesOwnAssignment === 1) { - t += ` and ${he} is resting before choosing another task.`; + t += ` so ${he} takes a break before choosing another task.`; } else if (slave.assignment === "rest") { if (oldJob !== "rest") { r += ` and since ${he} was unable to return to ${his} old task to ${oldJob}, ${his} assignment has defaulted to rest.`; } else { - r += ` so ${he} has returned to rest.`; + r += ` so ${he} has returned to resting.`; } } else { r += ` so ${he} goes back to ${oldJob}.`; -- GitLab