diff --git a/src/events/RESS/retchingCum.js b/src/events/RESS/retchingCum.js
index af394bc5f9919e509425d71d08619cfb5c8ea3dd..c5d0f8b7f57b55be7e8562f5561b6b21e04f94dc 100644
--- a/src/events/RESS/retchingCum.js
+++ b/src/events/RESS/retchingCum.js
@@ -28,10 +28,16 @@ App.Events.RESSRetchingCum = class RESSRetchingCum extends App.Events.BaseEvent
 		App.Events.drawEventArt(node, eventSlave, "no clothing");
 
 		let t = [];
-		t.push(`You are inspecting the slave feeding area early in the week, watching your slaves as they come and go to get their required nourishment for the morning. You see`);
+		t.push(`You are inspecting the slave feeding area early in the week, watching your slaves as they come and go to get their required nourishment for the morning.`);
 		t.push(App.UI.DOM.slaveDescriptionDialog(eventSlave));
-		t.push(V.cockFeeder === 1 ? `as ${he} kneels in front of the feeder phallus with a look of disgust on ${his} face` : `as ${he}`);
-		t.push(canSee(eventSlave) ? `stares into ${his} cup of nutritional fluid with a look of disgust on ${his} face.` : `grimaces at ${his} cup of nutritional fluid.`);
+		if (V.cockFeeder === 1) {
+			t.push(`You see as ${he} kneels in front of the feeder`);
+			t.push(canSee(eventSlave) ? `phallus, staring at it with disgust plainly written on ${his} face.` : `phallus with a look of disgust on ${his} face.`);
+		} else if (canSee(eventSlave)) {
+			t.push(`You see ${him} staring into ${his} cup of nutritional fluid with a look of disgust on ${his} face.`);
+		} else {
+			t.push(`You see ${him} grimacing at ${his} cup of nutritional fluid.`);
+		}
 		t.push(`You quickly check your records and ${V.assistant.name} confirms that ${eventSlave.slaveName} is required to ingest`);
 		t.push(eventSlave.dietCum === 2 ? `an extreme diet based almost entirely on human ejaculate.` : `a large amount of human ejaculate as part of ${his} diet.`);
 		App.Events.addParagraph(node, t);