From acef11442cdba07387754bf37d70d5c543014b9c Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Sun, 2 Jul 2017 03:25:23 -0400
Subject: [PATCH] Fixes.

---
 slave variables documentation - Pregmod.txt |  5 +++++
 src/uncategorized/longSlaveDescription.tw   | 12 ++++++------
 src/utility/descriptionWidgets.tw           |  2 +-
 3 files changed, 12 insertions(+), 7 deletions(-)

diff --git a/slave variables documentation - Pregmod.txt b/slave variables documentation - Pregmod.txt
index e023146516c..7da58c8c13f 100644
--- a/slave variables documentation - Pregmod.txt	
+++ b/slave variables documentation - Pregmod.txt	
@@ -2093,9 +2093,14 @@ inflationType:
 
 What kind of fluid is in the slave.
 Accepts string
+"none"
 "water"
 "cum"
 "milk"
+"food"
+"aphrodisiac"
+"curative"
+"tightener"
 
 inflationMethod:
 
diff --git a/src/uncategorized/longSlaveDescription.tw b/src/uncategorized/longSlaveDescription.tw
index d86c5b68cd9..e0648e359b4 100644
--- a/src/uncategorized/longSlaveDescription.tw
+++ b/src/uncategorized/longSlaveDescription.tw
@@ -321,21 +321,21 @@ She comes to you for an inspection
 			$activeSlave.slaveName<<if $activeSlave.slaveSurname>> $activeSlave.slaveSurname<</if>>
 		<</switch>>
 		is not her original full name;
-		<<if $activeSlave.birthName == "" || $activeSlave.birthSurname == "">>
+		<<if $activeSlave.birthName === "" || $activeSlave.birthSurname === "">>
 			whatever it was, however, has been lost forever.
 		<</if>>
 	<<elseif $activeSlave.slaveName != $activeSlave.birthName>>
 		$activeSlave.slaveName is not her original given name;
-		<<if $activeSlave.birthName == "">>
+		<<if $activeSlave.birthName === "">>
 			whatever it was, however, has been lost forever.
 		<</if>>
 	<<elseif $activeSlave.slaveSurname != $activeSlave.birthSurname>>
 		$activeSlave.slaveSurname is not her original surname;
-		<<if $activeSlave.birthSurname == "">>
+		<<if $activeSlave.birthSurname === "">>
 			whatever it was, however, has been lost forever.
 		<</if>>
 	<</if>>
-	<<if $activeSlave.birthName != "" || $activeSlave.birthSurname != "">>
+	<<if $activeSlave.birthName !== "" || $activeSlave.birthSurname !== "">>
 	<<if $activeSlave.devotion > 95>>
 		she adores her slave name and affects to have forgotten that she was ever called
 	<<elseif $activeSlave.devotion > 50>>
@@ -349,9 +349,9 @@ She comes to you for an inspection
 	<<else>>
 		she uses her slave name only when constantly punished, since she feels her real name is
 	<</if>>
-	<<if $activeSlave.birthName == "">>
+	<<if $activeSlave.birthName === "">>
 		$activeSlave.birthSurname.
-	<<elseif $activeSlave.birthSurname == "">>
+	<<elseif $activeSlave.birthSurname === "">>
 		$activeSlave.birthName.
 	<<else>>
 		<<switch $activeSlave.nationality>>
diff --git a/src/utility/descriptionWidgets.tw b/src/utility/descriptionWidgets.tw
index 5ff09f64043..c29afa0ddb4 100644
--- a/src/utility/descriptionWidgets.tw
+++ b/src/utility/descriptionWidgets.tw
@@ -9462,7 +9462,7 @@ $pronounCap has
 	<<elseif $activeSlave.bellyTat == "a butterfly">>
 		A butterfly is tattooed around $possessive popped navel, though it is rather stretched by $possessive enormous pregnancy.
 	<</if>>
-<<elseif HugeBelly($activeSlave)>>
+<<elseif hugeBelly($activeSlave)>>
 	<<if $activeSlave.bellyTat == "a heart">>
 		A heart is tattooed around $possessive popped navel, only to be truly seen when $pronoun is full-term.
 	<<elseif $activeSlave.bellyTat == "a star">>
-- 
GitLab