From 6b525f62218beea75637f56179340e2f7e495688 Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Wed, 12 Dec 2018 20:08:47 -0500
Subject: [PATCH] fixes

---
 devNotes/VersionChangeLog-Premod+LoliMod.txt    |  3 +++
 src/pregmod/widgets/playerDescriptionWidgets.tw |  2 +-
 src/uncategorized/nextWeek.tw                   | 12 ++++++------
 3 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index e0e5b1b58ff..b01e39336e8 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 228b1bee552..16e0a48b14c 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 fb90fef5e07..0d8e9c9fa5d 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))>>
-- 
GitLab