diff --git a/src/endWeek/reports/dairyReport.js b/src/endWeek/reports/dairyReport.js index 6450fafb4ec6e507ec80c935d3c60196be5eaac7..9a2830d527a07afb27a63727df9cbb7142cc871e 100644 --- a/src/endWeek/reports/dairyReport.js +++ b/src/endWeek/reports/dairyReport.js @@ -524,18 +524,18 @@ App.EndWeek.dairyReport = function() { } if (slave.health.condition < -80) { improveCondition(slave, 20); - } else if ((slave.health.condition < -40)) { + } else if (slave.health.condition < -40) { improveCondition(slave, 10); - } else if ((slave.health.condition < 0)) { + } else if (slave.health.condition < 0) { improveCondition(slave, 7); - } else if ((slave.health.condition < 90)) { + } else if (slave.health.condition < 90) { improveCondition(slave, 3); } if (slave.inflation > 0) { deflate(slave); } const _gigantomastiaMod = slave.geneticQuirks.gigantomastia === 2 ? (slave.geneticQuirks.macromastia === 2 ? 3 : 2) : 1; - if ((slave.lactation > 0) && ((V.dairySlimMaintain === 0) || (slave.boobs > 700))) { + if ((slave.lactation > 0) && (V.dairySlimMaintain === 0 || (slave.boobs > 700))) { if (slave.boobs < 2000) { _growth = 100; } else if ((slave.boobs < 5000 * _gigantomastiaMod)) {