diff --git a/src/events/RESS/cockfeederResistance.js b/src/events/RESS/cockfeederResistance.js
index 97d21613a58b20746f60220f885aca2a40532a8b..cd4e3169960783c1ecc224eec3622fb267ced88e 100644
--- a/src/events/RESS/cockfeederResistance.js
+++ b/src/events/RESS/cockfeederResistance.js
@@ -24,7 +24,7 @@ App.Events.RESSCockFeederResistance = class RESSCockFeederResistance extends App
 		const {
 			He, he, His, his, hers, him, himself, girl
 		} = getPronouns(eventSlave);
-		const hisA = "her";//What should go here?
+		const {hisA} = getPronouns(assistant.pronouns().main).appendSuffix('A');
 		const {s, S, ss, title: Master} = getEnunciation(eventSlave);
 		const desc = SlaveTitle(eventSlave);
 
diff --git a/src/events/randomEvent.js b/src/events/randomEvent.js
index 76ab1182e06d5d3a09dd7b227f160e127d693184..6da34d5a274e67279160980f0ee522bd0cba1c18 100644
--- a/src/events/randomEvent.js
+++ b/src/events/randomEvent.js
@@ -10,10 +10,6 @@ App.Events.getIndividualEvents = function() {
 	return [
 		// instantiate all possible random individual events here
 		// example: new App.Events.TestEvent(),
-		new App.Events.RECIButthole(),
-		new App.Events.RECIFuta(),
-		new App.Events.RECIMilf(),
-		new App.Events.RECIOrientation(),
 		new App.Events.RESSAssFitting(),
 		new App.Events.RESSCockFeederResistance(),
 		new App.Events.RESSHotPC(),
@@ -22,6 +18,12 @@ App.Events.getIndividualEvents = function() {
 		new App.Events.RESSMuscles(),
 		new App.Events.RESSRetchingCum(),
 		new App.Events.RESSWaistlineWoes(),
+
+		new App.Events.RECIButthole(),
+		new App.Events.RECIFuta(),
+		new App.Events.RECIMilf(),
+		new App.Events.RECIOrientation(),
+
 		new App.Events.RETSSiblingTussle(),
 	];
 };