diff --git a/src/npc/descriptions/fVagina.tw b/src/npc/descriptions/fVagina.tw
index 48d9320d522668130ed9d566c52e21c7678577e5..3c37d9f699c789f7a426714a0689bf57fba251a7 100644
--- a/src/npc/descriptions/fVagina.tw
+++ b/src/npc/descriptions/fVagina.tw
@@ -390,4 +390,3 @@ You decide to fuck her
 	<</if>>
 	<</for>>
 <</if>>
-<</nobr>>
diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw
index 75e47b99cda1c7f6b6a2f0d8783b2a6e47c99675..2d7509ed5c4ab427eba4efd39e08b24319e9ad12 100644
--- a/src/uncategorized/BackwardsCompatibility.tw
+++ b/src/uncategorized/BackwardsCompatibility.tw
@@ -32,6 +32,12 @@
 <<if ndef $foodCost>>
 	<<set $foodCost to 25>>
 <</if>>
+<<if ndef $fixedNationality>>
+	<<set $fixedNationality = 0>>
+<</if>>
+<<if ndef $fixedRace>>
+	<<set $fixedRace = 0>>
+<</if>>
 
 <<if ndef $RulesID>>
 	<<set $RulesID to 3>>
diff --git a/src/uncategorized/saServeThePublic.tw b/src/uncategorized/saServeThePublic.tw
index 0cf26a31a226493c0efbf4af4535b3eda4b6cb81..8d0aecd07743416e96a6fe9436ab61cdc102daf4 100644
--- a/src/uncategorized/saServeThePublic.tw
+++ b/src/uncategorized/saServeThePublic.tw
@@ -263,7 +263,7 @@ Her appearance attracted $beauty members of the public (<<print Math.trunc($beau
 	<<set $slaves[$i].health -= 7>>
 	<<set $injury = 1>>
 <<elseif ($slaves[$i].vagina < 0)>>
-	<<slaveTitle $slaves[$i]>>
+	<<SlaveTitle $slaves[$i]>>
 	<<if (($slaves[$i].analSkill + $slaves[$i].oralSkill) >= 200)>>
 	She's such an expert public servant that she copes with the stress of being a $desc slut.
 	<<elseif random(1,100) > 40+(10*($slaves[$i].analSkill + $slaves[$i].oralSkill))>>
diff --git a/src/uncategorized/saWhore.tw b/src/uncategorized/saWhore.tw
index c440863d5e126b9fbd7e8fb6302ff2abfdc556a3..30a1c66fcf911458f4f89e583a9df85aff1319cd 100644
--- a/src/uncategorized/saWhore.tw
+++ b/src/uncategorized/saWhore.tw
@@ -251,7 +251,7 @@ Her appearance attracted $beauty customers (<<print Math.trunc($beauty/7)>> a da
 	<<set $slaves[$i].health -= 7>>
 	<<set $injury = 1>>
 <<elseif ($slaves[$i].vagina < 0)>>
-	<<slaveTitle $slaves[$i]>>
+	<<SlaveTitle $slaves[$i]>>
 	<<if (($slaves[$i].analSkill + $slaves[$i].oralSkill) >= 200)>>
 	She's such an expert whore that she copes with the stress of being a $desc prostitute.
 	<<elseif random(1,100) > 40+(10*($slaves[$i].analSkill + $slaves[$i].oralSkill))>>
diff --git a/src/utility/artWidgets.tw b/src/utility/artWidgets.tw
index c994de732f0e4624d165c21576b3eff5009db72a..2a1401590e65c6fef8699f65c61205af1fe31b93 100644
--- a/src/utility/artWidgets.tw
+++ b/src/utility/artWidgets.tw
@@ -60,7 +60,7 @@ $args[2]: icon UI Display for vector art, 1 for on.
 <<elseif $args[1] == 2>>
 	<<print "<img src=" + _fileName + "style='float:right; border:3px hidden' width='300' height='300'/>">>
 <<elseif $args[1] == 1>>
-	<<if $seeSummaryImages != 0>><<print "<img src=" + _fileName + "style='float:left; border:3px hidden' width='150' height='150'/>">><</if>>
+	<<print "<img src=" + _fileName + "style='float:left; border:3px hidden' width='150' height='150'/>">>
 <<else>>
 	<<print "<img src=" + _fileName + "style='float:left; border:3px hidden' width='120' height='120'/>">>
 <</if>>
@@ -68,7 +68,7 @@ $args[2]: icon UI Display for vector art, 1 for on.
 <<elseif $imageChoice == 1>> /* VECTOR ART BY NOX */
 
 <<if $args[1] != 0>> /* IMAGE DOES NOT HAVE TO BE TINY */
-<<if ($args[1] != 1) || ($seeSummaryImages != 0)>> /* IMAGE IS NOT PART OF A LIST, OR IMAGES ARE TO BE DISPLAYED IN LISTS */
+<<if $args[1] != 1>> /* IMAGE IS NOT PART OF A LIST, OR IMAGES ARE TO BE DISPLAYED IN LISTS */
 
 /* 000-250-006 */
 /* <div class="imageRef"> */
@@ -514,7 +514,7 @@ $args[2]: icon UI Display for vector art, 1 for on.
 <<elseif $args[1] == 2>>
 	<<print "<img src=" + _fileName + "style='float:right; border:3px hidden' width='300' height='300'/>">>
 <<elseif $args[1] == 1>>
-	<<if $seeSummaryImages != 0>><<print "<img src=" + _fileName + "style='float:left; border:3px hidden' width='150' height='150'/>">><</if>>
+	<<print "<img src=" + _fileName + "style='float:left; border:3px hidden' width='150' height='150'/>">>
 <<else>>
 	<<print "<img src=" + _fileName + "style='float:left; border:3px hidden' width='120' height='120'/>">>
 <</if>>