diff --git a/src/events/RESS/comfortableSeat.js b/src/events/RESS/comfortableSeat.js
index 79d6a2ca9a2ee8e80480496e9157ad04d7ffcb16..595938dbdda35c3da89a6fcc75aef0a299ac73d6 100644
--- a/src/events/RESS/comfortableSeat.js
+++ b/src/events/RESS/comfortableSeat.js
@@ -101,7 +101,7 @@ App.Events.RESSComfortableSeat = class RESSComfortableSeat extends App.Events.Ba
 		} else {
 			t.push(`${He} has a shapely womanhood, with trim labia and a demure clit, but it's a little flushed.`);
 		}
-		t.push(`${eventSlave.vaginaLube > 0 ? `${His} wet cunt is already lubricating itself generously for you, slicking ${his} labia with female arousal.` : ""} The slutty ${desc} wants it badly.`);
+		t.push(`${(eventSlave.vaginaLube > 0 && eventSlave.vagina > -1) ? `${His} wet cunt is already lubricating itself generously for you, slicking ${his} labia with female arousal.` : ""} The slutty ${desc} wants it badly.`);
 
 		App.Events.addParagraph(node, t);
 		t = [];
diff --git a/src/facilities/spa/spaFramework.js b/src/facilities/spa/spaFramework.js
index ed4e8fc5215a2bffd3b8a1ad021e53c64c317121..02d9f7f0e8f410739a3cc5c44c033bd16a1d9ee0 100644
--- a/src/facilities/spa/spaFramework.js
+++ b/src/facilities/spa/spaFramework.js
@@ -49,7 +49,11 @@ App.Entity.Facilities.SpaAssigneeJob = class extends App.Entity.Facilities.Facil
 				)
 			)
 		) {
-			r.push(`${slave.slaveName} will not benefit from time at ${this.facility.name}.`);
+			if (slave.devotion < -20) {
+				r.push(`${slave.slaveName} is too resistant to be trusted at ${this.facility.name}.`);
+			} else {
+				r.push(`${slave.slaveName} will not benefit from time at ${this.facility.name}.`);
+			}
 		}
 
 		return r;