diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt index e0e5b1b58ff97049c595dffd1d377a273cb033fa..b01e39336e89dbda6eb14542f44d6f315acb4c58 100644 --- a/devNotes/VersionChangeLog-Premod+LoliMod.txt +++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt @@ -4,6 +4,9 @@ 12/12/2018 + 3 + -fixes + 2 -tweaked natural lactation logic (now decreases at endWeek start and engorges at endWeek end) -added a rule for facility heads to direct them on how to handle their lactation diff --git a/src/pregmod/widgets/playerDescriptionWidgets.tw b/src/pregmod/widgets/playerDescriptionWidgets.tw index 228b1bee552f9a76b08e3b2c38f1a8f959eb5d67..16e0a48b14c07180b6ae9d90988e9ef568e24cb5 100644 --- a/src/pregmod/widgets/playerDescriptionWidgets.tw +++ b/src/pregmod/widgets/playerDescriptionWidgets.tw @@ -506,7 +506,7 @@ <<if $PC.preg >= 41>> You can barely pull yourself and your overdue child out of bed; every action is a chore, you keep bumping things, and your child just won't calm down.<<if $PC.pregMood == 1>> However, thanks to all your mothering, your slaves are more than happy to do everything they can for you.<<elseif $PC.pregMood == 2>> Your dicked slaves are terrified of being seen by you, knowing full well that they will be bearing the full weight of your body as you satisfy your desires.<</if>> <<elseif $PC.preg >= 39>> - <<if $PC.pregMood == 1>> Even in the final stages of pregnancy, you make sure the slaves attending you are treated as if they are your own children.<<elseif $PC.pregMood == 2>> Your hormones practically rule you, leading you to demand your slaves to be prepared to pleasure you at a moments notice. Your needy cunt hungers for dick and you don't care what it is attached to right now.<</if>> + <<if $PC.pregMood == 1>> Even in the final stages of pregnancy, you make sure the slaves attending you are treated as if they were your own children.<<elseif $PC.pregMood == 2>> Your hormones practically rule you, leading you to demand your slaves to be prepared to pleasure you at a moments notice. Your needy cunt hungers for dick and you don't care what it is attached to right now.<</if>> <<elseif $PC.preg >= 36>> Every kick from your eager child threatens to send your buttons flying.<<if $PC.pregMood == 1>> While you may be demanding and needy, you do everything you can to treat them as if they were your own children.<<elseif $PC.pregMood == 2>> You know it's unbecoming for an arcology owner, but you need a dick in you and you don't care from where.<</if>> <<elseif $PC.preg >= 32>> diff --git a/src/uncategorized/nextWeek.tw b/src/uncategorized/nextWeek.tw index fb90fef5e0759333478426f0edf7b09fa84b65c5..0d8e9c9fa5db0513a3646c380f67b5eedb181785 100644 --- a/src/uncategorized/nextWeek.tw +++ b/src/uncategorized/nextWeek.tw @@ -117,13 +117,13 @@ <<if $slaves[_i].indenture > 0>> <<set $slaves[_i].indenture -= 1>> <</if>> - <<if $slaves[$i].induceLactation > 0>> - <<set $slaves[$i].induceLactation-->> + <<if $slaves[_i].induceLactation > 0>> + <<set $slaves[_i].induceLactation-->> <</if>> - <<if ($slaves[$i].lactation == 1)>> - <<if $slaves[$i].lactationDuration == 1>> - <<set $slaves[$i].boobsMilk = 10*$slaves[$i].lactationAdaptation>> - <<set $slaves[$i].boobs += $slaves[$i].boobsMilk>> + <<if ($slaves[_i].lactation == 1)>> + <<if $slaves[_i].lactationDuration == 1>> + <<set $slaves[_i].boobsMilk = 10*$slaves[_i].lactationAdaptation>> + <<set $slaves[_i].boobs += $slaves[_i].boobsMilk>> <</if>> <</if>> <<set $slaves[_i].trust = Number($slaves[_i].trust.toFixed(1)), $slaves[_i].devotion = Number($slaves[_i].devotion.toFixed(1))>>