diff --git a/src/pregmod/widgets/bodyswapWidgets.tw b/src/pregmod/widgets/bodyswapWidgets.tw
index 959ae6b2ebe927de1b984824535c6eb9766cda78..549ccd9b442a9b4dee208ec36259efde0365a441 100644
--- a/src/pregmod/widgets/bodyswapWidgets.tw
+++ b/src/pregmod/widgets/bodyswapWidgets.tw
@@ -2,13 +2,13 @@
 
 /* It's too fucking big jesus christ */
 
-/* first arg is slave getting swapped, second is body she is being swapped to */
+/* first arg is slave getting swapped, second is body she is being swapped to. The second body's physical traits overwrite the originals */
 <<widget "BodySwap">>
 <<if $args[1].origin != "You reserved a mindless slave like her from the Flesh Heap.">>
 	<<if $args[0].origBodyOwner == "">>
 		<<set $args[0].origBodyOwner = ("The body of the slave " + $args[1].slaveName)>>
 	<<else>>
-		<<set $args[0].origBodyOwnder = $args[1].origBodyOwner>>
+		<<set $args[0].origBodyOwner = $args[1].origBodyOwner>>
 	<</if>>
 <</if>>
 <<set $args[0].genes = $args[1].genes>>
@@ -154,6 +154,7 @@
 <<set $args[0].breastMesh = $args[1].breastMesh>>
 <<set $args[0].buttplugAttachment = $args[1].buttplugAttachment>>
 <<set $args[0].vasectomy = $args[1].vasectomy>>
+<<set $args[0].haircuts = $args[1].haircuts>>
 
 <<set $args[0].canRecruit = 0>>
 
diff --git a/src/uncategorized/nonRandomEvent.tw b/src/uncategorized/nonRandomEvent.tw
index e15e87c6ce34a8334582851f495b1b6dc7c34aa2..6a0f3d44709c25943c12099f7af2a79fda0f1c77 100644
--- a/src/uncategorized/nonRandomEvent.tw
+++ b/src/uncategorized/nonRandomEvent.tw
@@ -158,7 +158,7 @@
 
 <<else>>
 
-<<if random(1,200) > _effectiveWeek+100>>
+<<if random(1,200) > _effectiveWeek+100 || $hostageRescued == 1>>
 	<<goto "RIE Eligibility Check">>
 <<else>>
 	<<goto "Random Nonindividual Event">>
diff --git a/src/uncategorized/reFSAcquisition.tw b/src/uncategorized/reFSAcquisition.tw
index 10c02b241cd5956dae337bbe373437655f53c7b8..274c27ebfeaa632d3833b025d9fc1b4365eff546 100644
--- a/src/uncategorized/reFSAcquisition.tw
+++ b/src/uncategorized/reFSAcquisition.tw
@@ -382,10 +382,10 @@
 <<case "Maturity Preferentialist Two">>
 
 <<set $contractCost = 3000>>
-<<include "Generate New Slave">>
 <<set $activeSlaveOneTimeMinAge = 25>>
 <<set $activeSlaveOneTimeMaxAge = 42>>
 <<set $one_time_age_overrides_pedo_mode = 1>>
+<<include "Generate New Slave">>
 <<set $activeSlave.origin = "She was sold to you by her son, in order to raise funds for his business.">>
 <<set $activeSlave.boobs = random(4,6)*200>>
 <<set $activeSlave.weight = 20>>
diff --git a/src/uncategorized/rieEligibilityCheck.tw b/src/uncategorized/rieEligibilityCheck.tw
index 0ba369c701441718aff14af03777625726559c7b..696deb559aa6f9cfee077f7ecd592f2dff719038 100644
--- a/src/uncategorized/rieEligibilityCheck.tw
+++ b/src/uncategorized/rieEligibilityCheck.tw
@@ -12,10 +12,11 @@
 	<</if>>
 <</for>>
 
-<<if $eligibleSlaves.length == 0>>
-	<<goto "Next Week">>
-<<elseif $hostageRescued == 1>>
+
+<<if $hostageRescued == 1>>
 	<<goto "P hostage acquisition">>
+<<elseif $eligibleSlaves.length == 0>>
+	<<goto "Next Week">>
 <<else>>
 	<<goto "Random Individual Event">>
 <</if>>