diff --git a/src/endWeek/saHormonesEffects.js b/src/endWeek/saHormonesEffects.js index c98212c56689ec1a19d37a9b90da232a94fcf81d..ad81b02db44b31b1b196503123d8754b5c5c8c85 100644 --- a/src/endWeek/saHormonesEffects.js +++ b/src/endWeek/saHormonesEffects.js @@ -183,7 +183,7 @@ App.SlaveAssignment.hormonesEffects = (function() { slave.faceShape = "cute"; } } - if (faceValue < 0 && slave.face < 75) { + if (faceValue < 50 && slave.face < 75) { r.push(`Hormonal effects cause <span class="lime">${his} facial structure to soften and become less unattractive.</span>`); faceInc = 1 + V.hormoneUpgradePower; if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) { @@ -301,7 +301,7 @@ App.SlaveAssignment.hormonesEffects = (function() { slave.faceShape = "cute"; } } - if (faceValue < 0 && slave.face < 60) { + if (faceValue < 30 && slave.face < 60) { r.push(`Hormonal effects cause <span class="lime">${his} facial structure to soften and become less unattractive.</span>`); faceInc = 1 + V.hormoneUpgradePower; if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) { @@ -417,7 +417,7 @@ App.SlaveAssignment.hormonesEffects = (function() { slave.faceShape = "cute"; } } - if (faceValue < 0 && slave.face < 30) { + if (faceValue < 10 && slave.face < 30) { r.push(`Hormonal effects cause <span class="lime">${his} facial structure to soften and become less unattractive.</span>`); faceInc = 1 + V.hormoneUpgradePower; if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) {