diff --git a/src/npc/removeActiveSlave.tw b/src/npc/removeActiveSlave.tw
index 25d40597a2317fa6509282f7e152a1a9f32d2203..ad4466db4d48a726685f7c931252c0c0a16856d3 100644
--- a/src/npc/removeActiveSlave.tw
+++ b/src/npc/removeActiveSlave.tw
@@ -156,7 +156,7 @@
 				<<set _dontDeleteMe = 1>>
 			<</if>>
 		<</if>>
-		<<if _dontDeleteMe == 1>> /* avoid going through this loop if possible */
+		<<if _dontDeleteMe == 0>> /* avoid going through this loop if possible */
 			<<for _rasi = 0; _rasi < _SL; _rasi++>>
 				<<if $slaves[_rasi].ID != $activeSlave.ID && isImpregnatedBy($slaves[_rasi], $activeSlave)>> /* have we impregnated a slave that is not ourself? */
 					<<set _dontDeleteMe = 1>>
diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw
index cfe984d430fa355fbaa7dfad43e6911f56210c17..6e304a2972de56ac3fe665bd4ddb806804e77f8f 100644
--- a/src/uncategorized/BackwardsCompatibility.tw
+++ b/src/uncategorized/BackwardsCompatibility.tw
@@ -3043,9 +3043,9 @@ Setting missing slave variables:
 			<<set _dontDeleteMe = 1>>
 		<</if>>
 	<</if>>
-	<<if _dontDeleteMe == 1>> /* avoid going through this loop if possible */
+	<<if _dontDeleteMe == 0>> /* avoid going through this loop if possible */
 		<<for _bci2 = 0; _bci2 < $slaves.length; _bci2++>>
-			<<if $slaves[_bci2].ID != _Slave.ID && isImpregnatedBy($slaves[_bci2], _Slave)>> /* have we impregnated a slave that is not ourself? */
+			<<if isImpregnatedBy($slaves[_bci2], _Slave)>> /* have we impregnated a slave on the slaves array? */
 				<<set _dontDeleteMe = 1>>
 				<<break>>
 			<</if>>