diff --git a/Changelog.txt b/Changelog.txt index 6bece9057f21b029fc37033d6846f9bf1186713c..d5241bc0bbfaa8f9a46e5dad119b6e62e30caa8f 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -6,17 +6,19 @@ Pregmod 0 -unified cybermod with vanilla + -major pronoun work (99.9% completion) -slave assignment links improved -facility transfer tab added to facility assignment -new slave school specializing in nulled slaves - -added genetic muscle gain and loss -added a drug to force erections -aphrodisiacs counter erectile dysfunction -added birth tracking tattoo -added event to revive FCNN -added upgrade to gene lab allowing further genetic quirk detection and control - -dwarfism genetic quirk added + -dwarfism and gigantism genetic quirks added + -added genetic muscle gain and loss -added dick and testicle branding + -fixed branding -breast implants now impact milk production based on % implant -many new names added to lacking name pools -restored chem summary to the clinic diff --git a/src/js/slaveSummaryWidgets.js b/src/js/slaveSummaryWidgets.js index 32ccb6f59751795f1861e721df02914bc2887dea..0349b0a4f873f30422a72c5058b54fee764a6e84 100644 --- a/src/js/slaveSummaryWidgets.js +++ b/src/js/slaveSummaryWidgets.js @@ -1042,7 +1042,7 @@ window.SlaveSummaryUncached = (function() { r += `Permanently pregnant.`; } else if (swd.litters.length > 1) { r += `<span class="lime">`; - r += `Mutipregnant, (` + swd.litters.length + ` sets).`; + r += `Concurrent pregnancies: (` + swd.litters.length + ` sets).`; r+= ` Max:` + swd.litters[0] + ` / Min:` + swd.litters[swd.litters.length-1] + ` week(s).`; r += `</span> `; } else if (((slave.preg < slave.pregData.normalBirth / 10) && (slave.preg > 0) && slave.pregKnown === 0) || slave.pregWeek === 1) {