diff --git a/src/uncategorized/seCoursing.tw b/src/uncategorized/seCoursing.tw
index c37f650dd0078ec932ce54e9fa0ededdf147cee6..024dbf3735820a87658ab18d86c5624784cf7991 100644
--- a/src/uncategorized/seCoursing.tw
+++ b/src/uncategorized/seCoursing.tw
@@ -235,75 +235,99 @@ You lead your lurcher $Lurcher.slaveName out on a leash, naked just like the har
 /* 000-250-006 */
 <<if _sec == 0>>
 	<<link "The first hare">>
+		<<replace "#result">>
+			<<set $activeSlave = clone($hare1), $origin = $origin1, $hareSpeed = $hareSpeed1>>
+			<<include "SE coursing race">>
+		<</replace>>
 		<<replace "#artFrame">>
 			<<set _clothesTemp = $Lurcher.clothes, $Lurcher.clothes = "no clothing">>
+			<<if $activeSlave != 0>>
+				<<set _clothesTemp2 = $activeSlave.clothes, $activeSlave.clothes = "no clothing">>
+			<</if>>
 			/* 000-250-006 */
 			<<if $seeImages == 1>>
 				<div class="imageColumn">
 					<div class="imageRef medImg">
 						<<SlaveArt $Lurcher 2 0>>
 					</div>
-					<div class="imageRef medImg">
-						<<SlaveArt $hare1 2 0>>
-					</div>
+					<<if $activeSlave != 0>>
+						<div class="imageRef medImg">
+							<<SlaveArt $activeSlave 2 0>>
+						</div>
+					<</if>>
 				</div>
 			<</if>>
 			/* 000-250-006 */
 			<<set $Lurcher.clothes = _clothesTemp>>
-		<</replace>>
-		<<replace "#result">>
-			<<set $activeSlave = clone($hare1), $origin = $origin1, $hareSpeed = $hareSpeed1>>
-			<<include "SE coursing race">>
+			<<if $activeSlave != 0>>
+				<<set $activeSlave.clothes = _clothesTemp2>>
+			<</if>>
 		<</replace>>
 	<</link>>
 <<elseif _sec == 1>>
 	<<link "The second hare">>
+		<<replace "#result">>
+			<<set $activeSlave = clone($hare2), $origin = $origin2, $hareSpeed = $hareSpeed2>>
+			<<set $hare2 = clone($hare1), $origin2 = $origin1, $hareSpeed2 = $hareSpeed1>>
+			<<include "SE coursing race">>
+		<</replace>>
 		<<replace "#artFrame">>
 			<<set _clothesTemp = $Lurcher.clothes, $Lurcher.clothes = "no clothing">>
+			<<if $activeSlave != 0>>
+				<<set _clothesTemp2 = $activeSlave.clothes, $activeSlave.clothes = "no clothing">>
+			<</if>>
 			/* 000-250-006 */
 			<<if $seeImages == 1>>
 				<div class="imageColumn">
 					<div class="imageRef medImg">
 						<<SlaveArt $Lurcher 2 0>>
 					</div>
-					<div class="imageRef medImg">
-						<<SlaveArt $hare2 2 0>>
-					</div>
+					<<if $activeSlave != 0>>
+						<div class="imageRef medImg">
+							<<SlaveArt $activeSlave 2 0>>
+						</div>
+					<</if>>
 				</div>
 			<</if>>
 			/* 000-250-006 */
 			<<set $Lurcher.clothes = _clothesTemp>>
-		<</replace>>
-		<<replace "#result">>
-			<<set $activeSlave = clone($hare2), $origin = $origin2, $hareSpeed = $hareSpeed2>>
-			<<set $hare2 = clone($hare1), $origin2 = $origin1, $hareSpeed2 = $hareSpeed1>>
-			<<include "SE coursing race">>
+			<<if $activeSlave != 0>>
+				<<set $activeSlave.clothes = _clothesTemp2>>
+			<</if>>
 		<</replace>>
 	<</link>>
 <<else>>
 	<<link "The third and final hare">>
+		<<replace "#result">>
+			<<set $activeSlave = clone($hare3), $origin = $origin3, $hareSpeed = $hareSpeed3>>
+			<<set $hare3 = clone($hare1), $origin3 = $origin1, $hareSpeed3 = $hareSpeed1>>
+			<<include "SE coursing race">>
+		<</replace>>
 		<<replace "#artFrame">>
 			<<set _clothesTemp = $Lurcher.clothes, $Lurcher.clothes = "no clothing">>
+			<<if $activeSlave != 0>>
+				<<set _clothesTemp2 = $activeSlave.clothes, $activeSlave.clothes = "no clothing">>
+			<</if>>
 			/* 000-250-006 */
 			<<if $seeImages == 1>>
 				<div class="imageColumn">
 					<div class="imageRef medImg">
 						<<SlaveArt $Lurcher 2 0>>
 					</div>
-					<div class="imageRef medImg">
-						<<SlaveArt $hare3 2 0>>
-					</div>
+					<<if $activeSlave != 0>>
+						<div class="imageRef medImg">
+							<<SlaveArt $activeSlave 2 0>>
+						</div>
+					<</if>>
 				</div>
 			<</if>>
 			/* 000-250-006 */
 			<<set $Lurcher.clothes = _clothesTemp>>
+			<<if $activeSlave != 0>>
+				<<set $activeSlave.clothes = _clothesTemp2>>
+			<</if>>
 		<</replace>>
-		<<replace "#result">>
-			<<set $activeSlave = clone($hare3), $origin = $origin3, $hareSpeed = $hareSpeed3>>
-			<<set $hare3 = clone($hare1), $origin3 = $origin1, $hareSpeed3 = $hareSpeed1>>
-			<<include "SE coursing race">>
-		<</replace>>
-<</link>>
+	<</link>>
 <</if>>
 <<if $origin == "virgin">>
 	is an appealingly young $activeSlave.race _girl2, and has V symbols drawn over _his2 cunt and on _his2 lower back, in the interests of fairness. _He2's a @@.pink;double virgin.@@<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around _his2 neck.<</if>>
diff --git a/src/uncategorized/seCoursingRace.tw b/src/uncategorized/seCoursingRace.tw
index 3278308c4bd3642029d83ad990d06bbdc84f4bd6..21be7192d8c8449d32f4c036c295fcf7d4b2fa6c 100644
--- a/src/uncategorized/seCoursingRace.tw
+++ b/src/uncategorized/seCoursingRace.tw
@@ -159,6 +159,7 @@ You place your hand on the leash's quick release and <<if canHear($Lurcher)>>whi
 	<<if canSee($Lurcher)>>Seeing that the $origin hare is slower<<else>>hearing the $origin hare's bell nearby<</if>>, $he angles after _him2 instead.
 	<<if $hareSpeed >= _LurcherSpeed>>
 		$He does no better with $his new target; $his course is over.
+		<<set $activeSlave = 0>>
 	<<elseif random(1,2) == 1>>
 		One of $his rival lurchers has the same idea, however, and tries to trip $him up.
 		<<if !canSee($Lurcher)>>