diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index f925cf211e74c30d6774c24ea2b81c79ffb0b0ef..575a15d1a4011658d560be7ae9926039ef6ca6d5 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -4,6 +4,9 @@
 
 12/28/17
 
+	238
+	-fixed slave summary bug
+
 	237
 	-fixes to eugenics bad end
 	-SFanons tweaks fixes and content
diff --git a/src/uncategorized/saServeYourOtherSlaves.tw b/src/uncategorized/saServeYourOtherSlaves.tw
index 9150f5833a70dd1262d1dd4d03f3f1f16a530df3..b02f45edec724e64079676b10adff17305d4631c 100644
--- a/src/uncategorized/saServeYourOtherSlaves.tw
+++ b/src/uncategorized/saServeYourOtherSlaves.tw
@@ -34,9 +34,6 @@
 			<<set $slaves[$i].devotion += 1>>
 		<</if>>
 	<</if>>
-	<<set _fuckCount = (($dormitoryPopulation+$roomsPopulation)+random((($dormitoryPopulation+$roomsPopulation)*1),($dormitoryPopulation+$roomsPopulation)*7))>>
-	<<SimpleSlaveFucking $slaves[$i] _fuckCount>>
-	<<set $slaves[$i].need -= 2*_fuckCount>>
 <<else>>
 	obediently serves your other slaves' sexual needs. Being used as a sexual outlet for everyone @@.hotpink;keeps her in a good frame of mind.@@
 	<<set $slaves[$i].trust += 2>>
@@ -53,6 +50,9 @@
 <<if $slaves[$i].amp != 1 && !canWalk($slaves[$i])>>
 	Since she's forced to crawl around, she's especially vulnerable.
 <</if>>
+<<set _fuckCount = (($dormitoryPopulation+$roomsPopulation)+random((($dormitoryPopulation+$roomsPopulation)*1),($dormitoryPopulation+$roomsPopulation)*7))>>
+<<SimpleSlaveFucking $slaves[$i] _fuckCount>>
+<<set $slaves[$i].need -= 2*_fuckCount>>
 
 <<else>> /* serving a slave */
 
diff --git a/src/uncategorized/slaveSummary.tw b/src/uncategorized/slaveSummary.tw
index 38fba1bf267d45fb0eb853ef2fa6b970b2af0d8b..13ac8e0a441a478fb8975d42414a4f60752b7856 100644
--- a/src/uncategorized/slaveSummary.tw
+++ b/src/uncategorized/slaveSummary.tw
@@ -10,7 +10,7 @@
 	"Head Girl Suite":           s => (s.assignmentVisible == 1 && s.fuckdoll <= 0 && (
 		   ($Flag == 0 && s.assignment != "be your Head Girl" && s.indentureRestrictions <= 0 && s.breedingMark != 1)
 		|| ($Flag != 0 && s.assignment == "live with your Head Girl"))),
-	"Subordinate Targeting":     s => (s.devotion >= -20 && s.fuckdoll == 0 && $activeSlave.ID != s.ID && ($activeSlave.amp != 1 || s.amp != 1),
+	"Subordinate Targeting":     s => (s.devotion >= -20 && s.fuckdoll == 0 && $activeSlave.ID != s.ID && ($activeSlave.amp != 1 || s.amp != 1)),
 	"Spa":                       s => (s.assignmentVisible == 1 && s.fuckdoll <= 0 && (
 		   ($Flag == 0 && s.assignment != "rest in the spa")
 		|| ($Flag == 1 && s.assignment == "rest in the spa")